diff options
| author | Thomas <> | 2021-03-26 09:54:41 +0100 | 
|---|---|---|
| committer | Thomas <> | 2021-03-26 09:54:41 +0100 | 
| commit | 510fca957d9cf00260efe7ed78a663d46c69adb7 (patch) | |
| tree | 8129c4ab6ff144e28a02d0a8f443561ce8a5e52e /pdf-as-web-db | |
| parent | b51e3b877fa7c8b930e63fd8e1317e34d7d4773e (diff) | |
| download | pdf-as-4-510fca957d9cf00260efe7ed78a663d46c69adb7.tar.gz pdf-as-4-510fca957d9cf00260efe7ed78a663d46c69adb7.tar.bz2 pdf-as-4-510fca957d9cf00260efe7ed78a663d46c69adb7.zip | |
update gradle build-process to wrapper 6.8.3
Diffstat (limited to 'pdf-as-web-db')
| -rw-r--r-- | pdf-as-web-db/build.gradle | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/pdf-as-web-db/build.gradle b/pdf-as-web-db/build.gradle index 0fc400e5..91a4825d 100644 --- a/pdf-as-web-db/build.gradle +++ b/pdf-as-web-db/build.gradle @@ -14,13 +14,14 @@ repositories {  }  dependencies { -	compile project (':pdf-as-web') -	compile project (':pdf-as-web-status') -	compile "org.hibernate:hibernate-core:4.3.6.Final" -	compile "org.hibernate:hibernate-entitymanager:4.3.6.Final" -	compile group: 'log4j', name: 'log4j', version: '1.2.17' -	compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion -	testCompile group: 'junit', name: 'junit', version: '4.+' +	implementation project (':pdf-as-web') +	implementation project (':pdf-as-web-status') +	implementation project (':pdf-as-web-statistic-api') +	api "org.hibernate:hibernate-core:4.3.11.Final" +	api "org.hibernate:hibernate-entitymanager:4.3.11.Final" +	implementation group: 'log4j', name: 'log4j', version: '1.2.17' +	implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion +	testImplementation group: 'junit', name: 'junit', version: '4.+'  }  task releases(type: Copy) { | 
