vietj / childprocess-vertx-ext

Child Process extension for Vert.x
Apache License 2.0
50 stars 10 forks source link

NoClassDefFoundError with Vertx 3.6.0 #2

Closed Mikey-Burns closed 5 years ago

Mikey-Burns commented 5 years ago

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?

vietj commented 5 years ago

a pr updating to 3.6 would be great !

vietj commented 5 years ago

should be fine now since it's upated to 3.6.2

Mikey-Burns commented 5 years ago

Looks great. Thanks for updating.