When I call com.julienviet.rxjava.childprocess.Process.spawn() I get a NoClassDefFoundError. It looks like the issue is that the Rx-ified Process class is referring to the @io.vertx.lang.rxjava.RxGen annotation, which has been replaced by io.vertx.lang.rx.RxGen in Vertx 3.6.0. I think the fix is to build a new artifact with Vertx 3.6.0 as the version specified in the pom file. Are there already plans to produce that artifact, or would a PR be my best option?
When I call
com.julienviet.rxjava.childprocess.Process.spawn()
I get aNoClassDefFoundError
. It looks like the issue is that the Rx-ified Process class is referring to the@io.vertx.lang.rxjava.RxGen
annotation, which has been replaced byio.vertx.lang.rx.RxGen
in Vertx 3.6.0. I think the fix is to build a new artifact with Vertx 3.6.0 as the version specified in the pom file. Are there already plans to produce that artifact, or would a PR be my best option?