diff options
Diffstat (limited to 'pdf-as-cli/build.gradle')
-rw-r--r-- | pdf-as-cli/build.gradle | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pdf-as-cli/build.gradle b/pdf-as-cli/build.gradle new file mode 100644 index 00000000..48a9b659 --- /dev/null +++ b/pdf-as-cli/build.gradle @@ -0,0 +1,31 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +jar { + manifest { + attributes 'Implementation-Title': 'PDF-AS CLI', 'Implementation-Version': version + } +} + +repositories { + mavenCentral() +} + +dependencies { + compile project (':pdf-as-lib') + compile project (':stamper:stmp-itext') + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} |