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-status | |
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-status')
-rw-r--r-- | pdf-as-web-status/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pdf-as-web-status/build.gradle b/pdf-as-web-status/build.gradle index e856ea1f..c9812956 100644 --- a/pdf-as-web-status/build.gradle +++ b/pdf-as-web-status/build.gradle @@ -21,10 +21,10 @@ sourceSets.test.compileClasspath += configurations.providedCompile sourceSets.test.runtimeClasspath += configurations.providedCompile dependencies { - compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion - compile 'org.apache.commons:commons-lang3:3.3.2' - providedCompile 'javax.servlet:javax.servlet-api:3.0.1' - testCompile group: 'junit', name: 'junit', version: '4.+' + implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion + implementation 'org.apache.commons:commons-lang3:3.3.2' + compileOnly 'javax.servlet:javax.servlet-api:3.0.1' + testImplementation group: 'junit', name: 'junit', version: '4.+' } task releases(type: Copy) { |