diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-10-16 13:32:35 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-10-16 13:32:35 +0200 |
commit | c3e2b817615c9c2bbaf056e5547cd3f95f8905ea (patch) | |
tree | 6a7946f9ccead542eec2e5d0213fad2ea63f3973 /pdf-as-pdfbox/build.gradle | |
parent | 63784f692a50606f34702706761edac052fdac60 (diff) | |
download | pdf-as-4-c3e2b817615c9c2bbaf056e5547cd3f95f8905ea.tar.gz pdf-as-4-c3e2b817615c9c2bbaf056e5547cd3f95f8905ea.tar.bz2 pdf-as-4-c3e2b817615c9c2bbaf056e5547cd3f95f8905ea.zip |
added PDFBOX specifc library
Diffstat (limited to 'pdf-as-pdfbox/build.gradle')
-rw-r--r-- | pdf-as-pdfbox/build.gradle | 32 |
1 files changed, 32 insertions, 0 deletions
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' +} + |