diff options
author | Thomas <> | 2021-03-26 11:23:37 +0100 |
---|---|---|
committer | Thomas <> | 2021-03-26 11:23:37 +0100 |
commit | 8a8d467d6415c5b12262ad18ff7f21f6b07cdcd4 (patch) | |
tree | 80b0419be467a1e8d2942b3d91d429b40c097732 | |
parent | 510fca957d9cf00260efe7ed78a663d46c69adb7 (diff) | |
download | pdf-as-4-8a8d467d6415c5b12262ad18ff7f21f6b07cdcd4.tar.gz pdf-as-4-8a8d467d6415c5b12262ad18ff7f21f6b07cdcd4.tar.bz2 pdf-as-4-8a8d467d6415c5b12262ad18ff7f21f6b07cdcd4.zip |
remove pdfbox 1.x backend from builds
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | pdf-as-cli/build.gradle | 2 | ||||
-rw-r--r-- | pdf-as-web/build.gradle | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -49,4 +49,6 @@ local.properties .buildpath /PDF-AS/.nb-gradle/ -.idea/*
\ No newline at end of file +/releases + +.idea/* diff --git a/pdf-as-cli/build.gradle b/pdf-as-cli/build.gradle index 42099a1b..1c14306a 100644 --- a/pdf-as-cli/build.gradle +++ b/pdf-as-cli/build.gradle @@ -36,7 +36,7 @@ dependencies { implementation project (':signature-standards:sigs-pkcs7detached') implementation project (':signature-standards:sigs-pades') implementation project (':pdf-as-moa') - pdfBox1Implementation project (':pdf-as-pdfbox') + //pdfBox1Implementation project (':pdf-as-pdfbox') pdfBox2Implementation project (':pdf-as-pdfbox-2') implementation group: 'commons-collections', name: 'commons-collections', version: '3.2.2' implementation group: 'commons-cli', name: 'commons-cli', version: '1.2' diff --git a/pdf-as-web/build.gradle b/pdf-as-web/build.gradle index 28cb4c1d..ec6f9a45 100644 --- a/pdf-as-web/build.gradle +++ b/pdf-as-web/build.gradle @@ -50,7 +50,7 @@ dependencies { api project (':pdf-as-moa') api project (':signature-standards:sigs-pkcs7detached') api project (':signature-standards:sigs-pades') - pdfbox1 project (':pdf-as-pdfbox') + // pdfbox1 project (':pdf-as-pdfbox') api project (':pdf-as-web-status') api project (':pdf-as-web-statistic-api') api group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.1' |