diff options
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' +} + |