无法 运行 jhipster,抱怨“nodeSetup”任务
Unable to run jhipster, complaining about "nodeSetup' task
我正在尝试启动 jhipster 项目(在 ubuntu、gradle 1.8 上),我收到以下错误消息:
gradle bootRun
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':nodeSetup'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 18.726 secs
我想我找到了原因。
Gradle 1.8 和 2.0 之间存在版本兼容性。
我再次开始使用项目附带的那个:
./gradlew bootRun
并且有效。
我正在尝试启动 jhipster 项目(在 ubuntu、gradle 1.8 上),我收到以下错误消息:
gradle bootRun
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':nodeSetup'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 18.726 secs
我想我找到了原因。 Gradle 1.8 和 2.0 之间存在版本兼容性。
我再次开始使用项目附带的那个: ./gradlew bootRun 并且有效。