aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-web/build.gradle
diff options
context:
space:
mode:
authorThomas <>2023-01-11 23:23:30 +0100
committerThomas <>2023-01-11 23:23:30 +0100
commit42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0 (patch)
treede9aceb59655ff02fcbc4100f07fe33d035f34f1 /pdf-as-web/build.gradle
parent989f7685e730255a08c32e7a10c090f2ffc22d26 (diff)
downloadpdf-as-4-42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0.tar.gz
pdf-as-4-42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0.tar.bz2
pdf-as-4-42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0.zip
feat(web): add bulk-light functionality into PDF-AS-Web
Diffstat (limited to 'pdf-as-web/build.gradle')
-rw-r--r--pdf-as-web/build.gradle6
1 files changed, 5 insertions, 1 deletions
diff --git a/pdf-as-web/build.gradle b/pdf-as-web/build.gradle
index 17ca596b..ad434bcf 100644
--- a/pdf-as-web/build.gradle
+++ b/pdf-as-web/build.gradle
@@ -48,6 +48,7 @@ sourceSets.test.runtimeClasspath += configurations.providedCompile
dependencies {
+ api project (':pdf-as-common')
api project (':pdf-as-lib')
api project (':pdf-as-moa')
api project (':signature-standards:sigs-pkcs7detached')
@@ -64,6 +65,7 @@ dependencies {
api group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.3'
api "commons-codec:commons-codec:1.15"
api 'org.apache.commons:commons-lang3:3.12.0'
+ api group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
api 'org.apache.cxf:cxf-rt-transports-http:3.4.5'
api 'org.apache.cxf:cxf-rt-frontend-jaxws:3.4.5'
api 'com.thetransactioncompany:cors-filter:2.10'
@@ -71,7 +73,9 @@ dependencies {
api 'ch.qos.logback:logback-core:1.2.10'
api 'org.json:json:20210307'
api group: 'javax.jws', name: 'javax.jws-api', version: '1.1'
- compileOnly 'javax.servlet:javax.servlet-api:3.0.1'
+ compileOnly 'javax.servlet:javax.servlet-api:3.0.1'
+ compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
+ annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
testImplementation group: 'junit', name: 'junit', version: '4.+'
testRuntime 'org.springframework:spring-test:5.2.22.RELEASE'