无法在Windows 7上运行用于eclipse项目的vertx模块

时间:2014-08-06 11:11:30

标签: java eclipse gradle vert.x

我无法在Windows 7上为eclipse项目运行vertx模块

我已按照此处的说明操作:http://vertx.io/gradle_dev.html

  1. 下载模板https://github.com/vert-x/vertx-gradle-template
  2. 运行测试

    cd vertx-gradle-template-master

    gradlew.bat test

    BUILD SUCCESSFUL

  3. 设置ide

    gradlew.bat eclipse

    BUILD SUCCESSFUL

  4. 尝试运行模块

    gradlew.bat runMod

  5. 我明白了:

    :collectDeps UP-TO-DATE
    :runMod
    Module directory build\mods\com.mycompany~my-module~1.0.0-final already exists. Creating properties on demand (a.k.a. dynamic properties) has been deprecated and is scheduled to be removed in Gradle 2.0. Please read http://gradle.org/docs/current/dsl/org.gradle.api.plugins.ExtraPropertiesExtension.html for information
    on the replacement for dynamic properties.
    Deprecated dynamic property: "args" on "task ':runMod'", value: "[runmod, com.mycompany...".
    
    Building 50% > :runMod
    

    我应该怎么做?我不明白。

1 个答案:

答案 0 :(得分:0)

实际上,你把一切都搞定了!

开发指南[0]提供您需要的额外信息。根据它,Gradle从程序中吞下了INFO级别的消息。如果你用'-i'再次执行,那么你会看到实际上表明事情按预期工作的缺失输出。

这是我在运行./gradlew runmod -i时看到的内容(注意案例无关紧要,这与使用'runMod'相同),您可以在其中看到来自PingVerticle类的日志消息,指示它正在等待ping消息:

...Same output as from the question...
PingVerticle started
Succeeded in deploying module
> Building 50% > :runMod

不幸的是,文档非常缺乏,PingVerticle将无限期地坐在那里直到您实际发送ping消息。

[0] http://vertx.io/dev_guide.html