From 510fca957d9cf00260efe7ed78a663d46c69adb7 Mon Sep 17 00:00:00 2001 From: Thomas <> Date: Fri, 26 Mar 2021 09:54:41 +0100 Subject: update gradle build-process to wrapper 6.8.3 --- signature-standards/sigs-pades/build.gradle | 10 +++++----- signature-standards/sigs-pkcs7detached/build.gradle | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'signature-standards') 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 { -- cgit v1.2.3