aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-web/build.gradle
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2013-11-27 10:05:17 +0100
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2013-11-27 10:05:17 +0100
commitf3476576c50efd922593c82656efda7aec5ae97f (patch)
tree66107d5c5d3a88af66bd4829d8fcecc5678b749e /pdf-as-web/build.gradle
parent7b2e2b640b0f392183f7927f692936950d3fabfc (diff)
downloadpdf-as-4-f3476576c50efd922593c82656efda7aec5ae97f.tar.gz
pdf-as-4-f3476576c50efd922593c82656efda7aec5ae97f.tar.bz2
pdf-as-4-f3476576c50efd922593c82656efda7aec5ae97f.zip
MOA integration sign/verification (not finished yet ...)
Lots of PDF-AS Web implementation
Diffstat (limited to 'pdf-as-web/build.gradle')
-rw-r--r--pdf-as-web/build.gradle5
1 files changed, 5 insertions, 0 deletions
diff --git a/pdf-as-web/build.gradle b/pdf-as-web/build.gradle
index c579ad70..65533842 100644
--- a/pdf-as-web/build.gradle
+++ b/pdf-as-web/build.gradle
@@ -2,6 +2,7 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'eclipse-wtp'
apply plugin: 'war'
+apply plugin: 'jetty'
sourceCompatibility = 1.5
@@ -12,6 +13,7 @@ jar {
}
repositories {
+ mavenLocal()
mavenCentral()
}
@@ -19,7 +21,10 @@ dependencies {
compile project (':pdf-as-lib')
compile project (':stamper:stmp-itext')
compile project (':signature-standards:sigs-pcks7detached')
+ compile project (':signature-standards:sigs-pades')
+ compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.2'
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
+ compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.5'
testCompile group: 'junit', name: 'junit', version: '4.+'
}