aboutsummaryrefslogtreecommitdiff
path: root/signature-standards/sigs-pades/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'signature-standards/sigs-pades/build.gradle')
-rw-r--r--signature-standards/sigs-pades/build.gradle10
1 files changed, 5 insertions, 5 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 {