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 --- stamper/stmp-itext/build.gradle | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 stamper/stmp-itext/build.gradle (limited to 'stamper/stmp-itext/build.gradle') diff --git a/stamper/stmp-itext/build.gradle b/stamper/stmp-itext/build.gradle new file mode 100644 index 00000000..1495d8af --- /dev/null +++ b/stamper/stmp-itext/build.gradle @@ -0,0 +1,32 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +jar { + manifest { + attributes 'Implementation-Title': 'PDF-AS Stamper with itext', 'Implementation-Version': version + } +} + +repositories { + mavenCentral() +} + +dependencies { + compile project (':pdf-as-lib') + compile project (':pdf-as-common') + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + compile group: 'com.lowagie', name: 'itext', version: '4.2.0' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} -- cgit v1.2.3