Reputation: 524
I have generated a JHipster application using these values:
{
"generator-jhipster":
{
"jhipsterVersion": "4.13.0",
"baseName": "app",
"packageName": "my.app",
"packageFolder": "my/app",
"serverPort": "8080",
"authenticationType": "session",
"hibernateCache": "ehcache",
"clusteredHttpSession": "no",
"websocket": "no",
"databaseType": "sql",
"devDatabaseType": "h2Disk",
"prodDatabaseType": "postgresql",
"searchEngine": "elasticsearch",
"buildTool": "gradle",
"enableSocialSignIn": false,
"rememberMeKey": "",
"clientFramework": "angularX",
"useSass": true,
"applicationType": "monolith",
"testFrameworks": [
"gatling",
"cucumber",
"protractor"
],
"jhiPrefix": "jhi",
"enableTranslation": false
}
}
When I try to run this task ./gradlew liquibaseClearChecksums
I got this error:
FAILURE: Build failed with an exception.
Where:
Script '/home/james/appz/1-current-projects/jhipster/angelstore/gradle/liquibase.gradle' line: 36
What went wrong:
Execution failed for task ':liquibaseClearChecksums'.
> Could not resolve all files for configuration ':liquibase'.
> Could not find org.liquibase.ext:liquibase-hibernate5:.
Required by:
project :
I have added this line on build.gradle file:
compile group: 'org.liquibase.ext', name: 'liquibase-hibernate5', version: '3.6'
but the error keeps appearing when I run ./gradlew liquibaseClearChecksums
Any suggestions ?
Thank you
Upvotes: 0
Views: 367
Reputation: 16294
Please upgrade to JHipster 4.14.0 (run jhipster upgrade
) or patch your gradle files as in this commit
Upvotes: 1