diff options
Diffstat (limited to 'stamper/stmp-itext/build.gradle')
-rw-r--r-- | stamper/stmp-itext/build.gradle | 32 |
1 files changed, 32 insertions, 0 deletions
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' + } + } +} |