From fc44d4bcad00192f0df8f6086737b9b126094dcd Mon Sep 17 00:00:00 2001 From: Andreas Fitzek Date: Thu, 26 Sep 2013 15:48:43 +0200 Subject: initial code commit --- pdf-as-common/build.gradle | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pdf-as-common/build.gradle (limited to 'pdf-as-common/build.gradle') diff --git a/pdf-as-common/build.gradle b/pdf-as-common/build.gradle new file mode 100644 index 00000000..19d3dc90 --- /dev/null +++ b/pdf-as-common/build.gradle @@ -0,0 +1,32 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +jar { + manifest { + attributes 'Implementation-Title': 'PDF-AS-4 Commons', 'Implementation-Version': version + } +} + +repositories { + mavenCentral() +} + +dependencies { + compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.5' + compile group: 'org.apache.pdfbox', name: 'pdfbox', version: '1.8.2' + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + compile group: 'ognl', name: 'ognl', version: '3.0.6' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} -- cgit v1.2.3