在Jhipster中,我通过命令删除了文件并在运行“gradlew liquibaseDiffChangelog”命令后但是出现了这个错误

问题描述 投票:0回答:1
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
gradle jhipster liquibase
1个回答
0
投票

这是JHipster中的一个错误,将在下一个版本> 4.13.1中修复,同时您可以通过在gradle/liquibase.gradle文件中添加3.6版来修复它:

dependencies {
    liquibase "org.liquibase.ext:liquibase-hibernate5:3.6"
}
© www.soinside.com 2019 - 2024. All rights reserved.