Chime
Chime copied to clipboard
Module does not work with VertX 3.5.0
Hi! It seems that the module does not work with VertX 3.5.0, it gives this error:
Deployment failed! com.redhat.ceylon.compiler.java.runtime.tools.ModuleNotFoundException: Could not find module: io.vertx.ceylon.core/3.5.0
The code:
private void addSchedulers() {
vertx.deployVerticle("ceylon:herd.schedule.chime/0.2.1", res -> {
if (res.succeeded()) {
System.out.println("Chime has been successfully deployed - start scheduling");
//scheduling(vertx);
} else {
System.out.println("Deployment failed! " + res.cause());
vertx.close();
}
});
}
Pom dependencies:
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-ceylon</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-lang-ceylon-doc</artifactId>
<version>3.5.0</version>
</dependency>
The problem could be that io.vertx.ceylon.core
does not exists anymore
Right, io.vertx.ceylon.core/3.5.0 still is not available. I hope vert.x team will provide it soon. See, this thread https://groups.google.com/forum/#!topic/vertx/2FpbOhcPA2Y
Hi, @LisiLisenok Is this issue already resolved? My team would like to use it in own application but seems this issue will block us to use Chime We are using vertx 3.5.1, and planning to upgrade to 3.5.2 very soon.
Hi
By running a simple vert.x application its unable to deploy the module. Its throwing Thread blocked exception in 60000 ms.
Vertx vertx = Vertx.vertx(); // deploying Chime vertx.deployVerticle("ceylon:herd.schedule.chime/0.2.0", res -> { if (res.succeeded()) { // Chime has been successfully deployed - start scheduling scheduling(vertx); } else { System.out.println("Deployment failed! " + res.cause()); vertx.close(); } });
Could you please help me on this.