在Jhipster我删除了通过命令运行后“gradlew liquibaseDiffChangelog”命令申请,但得到这个错误
FAILURE: Build failed with an exception. * Where:
Script 'G:\Project\beequote\gradle\liquibase.gradle' line: 19
* What went wrong:
Execution failed for task ':pathingLiquibaseJar'.
> Could not resolve all files for configuration ':liquibase'.
> Could not find org.liquibase.ext:liquibase-hibernate5:.
Required by:
project :
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more l
og output.
* Get more help at https://help.gradle.org
BUILD FAILED in 24s
回答:
这是在JHipster一个错误,将被固定在下一版本> 4.13.1,在此期间,您可以通过修复在gradle/liquibase.gradle
文件中添加版本3.6:
dependencies { liquibase "org.liquibase.ext:liquibase-hibernate5:3.6"
}
以上是 在Jhipster我删除了通过命令运行后“gradlew liquibaseDiffChangelog”命令申请,但得到这个错误 的全部内容, 来源链接: utcz.com/qa/264987.html