aboutsummaryrefslogtreecommitdiff
path: root/signature-standards
diff options
context:
space:
mode:
authorThomas <>2021-03-26 09:54:41 +0100
committerThomas <>2021-03-26 09:54:41 +0100
commit510fca957d9cf00260efe7ed78a663d46c69adb7 (patch)
tree8129c4ab6ff144e28a02d0a8f443561ce8a5e52e /signature-standards
parentb51e3b877fa7c8b930e63fd8e1317e34d7d4773e (diff)
downloadpdf-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 'signature-standards')
-rw-r--r--signature-standards/sigs-pades/build.gradle10
-rw-r--r--signature-standards/sigs-pkcs7detached/build.gradle10
2 files changed, 10 insertions, 10 deletions
diff --git a/signature-standards/sigs-pades/build.gradle b/signature-standards/sigs-pades/build.gradle
index 62fb154f..d28d5da5 100644
--- a/signature-standards/sigs-pades/build.gradle
+++ b/signature-standards/sigs-pades/build.gradle
@@ -1,4 +1,4 @@
-apply plugin: 'java'
+apply plugin: 'java-library'
apply plugin: 'eclipse'
jar {
@@ -21,10 +21,10 @@ releases.dependsOn jar
releases.dependsOn sourcesJar
dependencies {
- compile project (':pdf-as-lib')
- compile project (':pdf-as-common')
- compile 'org.apache.commons:commons-collections4:4.4'
- testCompile group: 'junit', name: 'junit', version: '4.+'
+ implementation project (':pdf-as-lib')
+ implementation project (':pdf-as-common')
+ implementation 'org.apache.commons:commons-collections4:4.4'
+ testImplementation group: 'junit', name: 'junit', version: '4.+'
}
test {
diff --git a/signature-standards/sigs-pkcs7detached/build.gradle b/signature-standards/sigs-pkcs7detached/build.gradle
index 3da05ccc..6b0e2870 100644
--- a/signature-standards/sigs-pkcs7detached/build.gradle
+++ b/signature-standards/sigs-pkcs7detached/build.gradle
@@ -1,4 +1,4 @@
-apply plugin: 'java'
+apply plugin: 'java-library'
apply plugin: 'eclipse'
jar {
@@ -21,10 +21,10 @@ releases.dependsOn jar
releases.dependsOn sourcesJar
dependencies {
- compile project (':pdf-as-lib')
- compile project (':pdf-as-common')
- compile 'org.apache.commons:commons-collections4:4.4'
- testCompile group: 'junit', name: 'junit', version: '4.+'
+ implementation project (':pdf-as-lib')
+ implementation project (':pdf-as-common')
+ implementation 'org.apache.commons:commons-collections4:4.4'
+ testImplementation group: 'junit', name: 'junit', version: '4.+'
}
test {