aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-common/build.gradle
diff options
context:
space:
mode:
authorAlexander Marsalek <amarsalek@iaik.tugraz.at>2021-07-02 14:06:44 +0200
committerAlexander Marsalek <amarsalek@iaik.tugraz.at>2021-07-02 14:06:44 +0200
commit8ed8e4e931c1cb3d3c814a53a07f73b566c3b719 (patch)
treedba21ab5f37c7dee3265cdc43796d1aa9bfa5266 /pdf-as-common/build.gradle
parentb51e3b877fa7c8b930e63fd8e1317e34d7d4773e (diff)
downloadpdf-as-4-8ed8e4e931c1cb3d3c814a53a07f73b566c3b719.tar.gz
pdf-as-4-8ed8e4e931c1cb3d3c814a53a07f73b566c3b719.tar.bz2
pdf-as-4-8ed8e4e931c1cb3d3c814a53a07f73b566c3b719.zip
v4.2.0
Diffstat (limited to 'pdf-as-common/build.gradle')
-rw-r--r--pdf-as-common/build.gradle19
1 files changed, 10 insertions, 9 deletions
diff --git a/pdf-as-common/build.gradle b/pdf-as-common/build.gradle
index e1a5fdfc..a607fcfe 100644
--- a/pdf-as-common/build.gradle
+++ b/pdf-as-common/build.gradle
@@ -1,4 +1,4 @@
-apply plugin: 'java'
+apply plugin: 'java-library'
apply plugin: 'eclipse'
jar {
@@ -20,14 +20,15 @@ releases.dependsOn jar
releases.dependsOn sourcesJar
dependencies {
- compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
- compile group: 'commons-collections', name: 'commons-collections', version: '3.2.2'
- compile group: 'commons-io', name: 'commons-io', version: '2.4'
- compile group: 'ognl', name: 'ognl', version: '3.0.6'
- compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
- compile 'commons-codec:commons-codec:1.10'
- compile group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.3'
- testCompile group: 'junit', name: 'junit', version: '4.+'
+ api group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
+ api group: 'commons-collections', name: 'commons-collections', version: '3.2.2'
+ api group: 'commons-io', name: 'commons-io', version: '2.8.0'
+ api group: 'ognl', name: 'ognl', version: '3.2.19'
+ api group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
+ api 'commons-codec:commons-codec:1.10'
+ api group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.3'
+ api group: 'javax.jws', name: 'javax.jws-api', version: '1.1'
+ testImplementation group: 'junit', name: 'junit', version: '4.+'
}
test {