diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2013-10-02 11:29:09 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2013-10-02 11:29:09 +0200 |
commit | 4e14449c2d0097e421bedc5f01647c8b09f1c49c (patch) | |
tree | 7df86ffc2a166d7ff3460d6807d8e345f0576978 /pdf-as-legacy/build.gradle | |
parent | 1483d928d358f1073e58510f3e12b1cf4984f269 (diff) | |
download | pdf-as-4-4e14449c2d0097e421bedc5f01647c8b09f1c49c.tar.gz pdf-as-4-4e14449c2d0097e421bedc5f01647c8b09f1c49c.tar.bz2 pdf-as-4-4e14449c2d0097e421bedc5f01647c8b09f1c49c.zip |
Initial legacy API checkin
Diffstat (limited to 'pdf-as-legacy/build.gradle')
-rw-r--r-- | pdf-as-legacy/build.gradle | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pdf-as-legacy/build.gradle b/pdf-as-legacy/build.gradle new file mode 100644 index 00000000..eff2889d --- /dev/null +++ b/pdf-as-legacy/build.gradle @@ -0,0 +1,37 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +jar { + manifest { + attributes 'Implementation-Title': 'PDF-AS-4 Library', 'Implementation-Version': version + } +} + +repositories { + mavenLocal() + mavenCentral() + maven { + url "http://nexus.iaik.tugraz.at/nexus/content/groups/internal" + } +} + +dependencies { + compile project (':pdf-as-lib') + compile project (':stamper:stmp-itext') + compile project (':signature-standards:sigs-pcks7detached') + compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.1' + compile group: 'commons-codec', name: 'commons-codec', version: '1.8' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} |