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