aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-pdfbox/build.gradle
diff options
context:
space:
mode:
authorAlexander Marsalek <amarsalek@iaik.tugraz.at>2021-06-01 15:32:59 +0200
committerAlexander Marsalek <amarsalek@iaik.tugraz.at>2021-06-01 15:32:59 +0200
commit35f085db9a800c955a72743f079c8635411467cd (patch)
tree3c3574800dd465ce0ccd26b8e99e0b3cc80c4ffe /pdf-as-pdfbox/build.gradle
parenteedafa4a54119a51f6c353266de7353eac2db785 (diff)
downloadpdf-as-4-35f085db9a800c955a72743f079c8635411467cd.tar.gz
pdf-as-4-35f085db9a800c955a72743f079c8635411467cd.tar.bz2
pdf-as-4-35f085db9a800c955a72743f079c8635411467cd.zip
removed pdfbox1
Diffstat (limited to 'pdf-as-pdfbox/build.gradle')
-rw-r--r--pdf-as-pdfbox/build.gradle37
1 files changed, 0 insertions, 37 deletions
diff --git a/pdf-as-pdfbox/build.gradle b/pdf-as-pdfbox/build.gradle
deleted file mode 100644
index aa86d2ab..00000000
--- a/pdf-as-pdfbox/build.gradle
+++ /dev/null
@@ -1,37 +0,0 @@
-apply plugin: 'java'
-apply plugin: 'eclipse'
-
-jar {
- manifest {
- attributes 'Implementation-Title': 'PDF-AS-4 PDFBOX Backend'
- }
-}
-
-repositories {
- mavenCentral()
-}
-
-task releases(type: Copy) {
- from jar.outputs
- into rootDir.toString() + "/releases/" + version + "/pdfbox1"
-}
-
-releases.dependsOn jar
-releases.dependsOn sourcesJar
-
-dependencies {
- implementation project (':pdf-as-lib')
- implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
- implementation 'org.slf4j:jcl-over-slf4j:1.7.18'
- api group: 'org.apache.pdfbox', name: 'pdfbox', version: '1.8.16'
- implementation group: 'commons-io', name: 'commons-io', version: '2.8'
- implementation group: 'ognl', name: 'ognl', version: '3.2.19'
- implementation group: 'javax.activation', name: 'activation', version: '1.1.1'
-
- testImplementation group: 'junit', name: 'junit', version: '4.+'
-}
-
-test {
- systemProperties 'property': 'value'
-}
-