diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-05-06 13:26:59 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-05-06 13:26:59 +0200 |
commit | a2b5bfc1203dfe53de937820d8b8dc59afbf56c3 (patch) | |
tree | 5f186cfffdf130371ae8c591714d9a55cb0ca082 /pdf-as-web-client/build.gradle | |
parent | 83ce097056ba90a2685fddaf384655cae39bd66b (diff) | |
download | pdf-as-4-a2b5bfc1203dfe53de937820d8b8dc59afbf56c3.tar.gz pdf-as-4-a2b5bfc1203dfe53de937820d8b8dc59afbf56c3.tar.bz2 pdf-as-4-a2b5bfc1203dfe53de937820d8b8dc59afbf56c3.zip |
added web-client, java SOAP client library
Diffstat (limited to 'pdf-as-web-client/build.gradle')
-rw-r--r-- | pdf-as-web-client/build.gradle | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pdf-as-web-client/build.gradle b/pdf-as-web-client/build.gradle new file mode 100644 index 00000000..c6fdb479 --- /dev/null +++ b/pdf-as-web-client/build.gradle @@ -0,0 +1,31 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +jar { + manifest { + attributes 'Implementation-Title': 'PDF-AS-4 WEB CLIENT', 'JARMANIFEST': 'PDF-AS-WEB-CLIENT' + } +} + + +repositories { + mavenCentral() +} + +dependencies { + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + compile project (':pdf-as-common') + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} |