Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Module does not work with VertX 3.5.0 #31

Open
Lory1990 opened this issue Dec 17, 2017 · 3 comments
Open

Module does not work with VertX 3.5.0 #31

Lory1990 opened this issue Dec 17, 2017 · 3 comments

Comments

@Lory1990
Copy link

Lory1990 commented Dec 17, 2017

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

@LisiLisenok
Copy link
Owner

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

@mxmind
Copy link

mxmind commented Jul 2, 2018

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.

@mukul-puspam
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants