From c3e2b817615c9c2bbaf056e5547cd3f95f8905ea Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Thu, 16 Oct 2014 13:32:35 +0200 Subject: added PDFBOX specifc library --- pdf-as-pdfbox/build.gradle | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pdf-as-pdfbox/build.gradle (limited to 'pdf-as-pdfbox/build.gradle') diff --git a/pdf-as-pdfbox/build.gradle b/pdf-as-pdfbox/build.gradle new file mode 100644 index 00000000..e680af8e --- /dev/null +++ b/pdf-as-pdfbox/build.gradle @@ -0,0 +1,32 @@ +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 +} + +dependencies { + compile project (':pdf-as-lib') + compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion + compile group: 'org.apache.pdfbox', name: 'pdfbox', version: '1.8.7' + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + compile group: 'commons-io', name: 'commons-io', version: '2.4' + compile group: 'ognl', name: 'ognl', version: '3.0.6' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + -- cgit v1.2.3