diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-07-22 10:14:21 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-07-22 10:14:21 +0200 |
commit | cdfd4153809a9f1f5fed903b06e19f92cdd10d1a (patch) | |
tree | ec379abc5c90d5992f91314c4c49a28d0a4845a1 /simpleSigning/build.gradle | |
parent | 88f8892f2d51727df6764b97d4facaf93ab3f9a6 (diff) | |
download | einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.tar.gz einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.tar.bz2 einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.zip |
einfach Signieren first commit
Diffstat (limited to 'simpleSigning/build.gradle')
-rw-r--r-- | simpleSigning/build.gradle | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/simpleSigning/build.gradle b/simpleSigning/build.gradle new file mode 100644 index 0000000..58d3680 --- /dev/null +++ b/simpleSigning/build.gradle @@ -0,0 +1,41 @@ +apply plugin: 'java' +apply plugin: 'eclipse' +apply plugin: 'eclipse-wtp' +apply plugin: 'war' + +sourceCompatibility = 1.6 +version = '1.0-RC1' + +jar { + manifest { + attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version + } +} + +repositories { + mavenCentral() +} + +dependencies { + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.2' + compile group: 'org.apache.commons', name: 'commons-io', version: '1.3.2' + compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.5' + compile "commons-codec:commons-codec:1.9" + //compile group: 'org.apache.pdfbox', name: 'pdfbox', version: '1.8.5' + compile 'com.lowagie:itext:4.2.0' + providedCompile 'javax.servlet:javax.servlet-api:3.1.0' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} |