diff options
| author | Jakob Heher <jakob.heher@iaik.tugraz.at> | 2026-04-15 13:49:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-15 13:49:22 +0200 |
| commit | 77dd3fcc4d85088b15ab859c4438521d9cd6ed10 (patch) | |
| tree | aefedc8d2ef77e6819b46a948459d6016dfe5b62 /pdf-as-web-statistic-api | |
| parent | 88930540361a88ff56e07fed31004b583f2e729f (diff) | |
| download | pdf-as-4-77dd3fcc4d85088b15ab859c4438521d9cd6ed10.tar.gz pdf-as-4-77dd3fcc4d85088b15ab859c4438521d9cd6ed10.tar.bz2 pdf-as-4-77dd3fcc4d85088b15ab859c4438521d9cd6ed10.zip | |
pdf-as-5 (#82)
- JDK 17
- PDFBox 3
- PDF-AS Web moved to Spring Boot
- MOA Integration tests w/ new error code
---------
Co-authored-by: Gerald Palfinger <gerald.palfinger@a-sit.at>
Co-authored-by: kathrin.resek <kathrin.resek@a-sit.at>
Diffstat (limited to 'pdf-as-web-statistic-api')
| -rw-r--r-- | pdf-as-web-statistic-api/build.gradle | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/pdf-as-web-statistic-api/build.gradle b/pdf-as-web-statistic-api/build.gradle index 4b6b8c0a..82216460 100644 --- a/pdf-as-web-statistic-api/build.gradle +++ b/pdf-as-web-statistic-api/build.gradle @@ -1,7 +1,9 @@ -apply plugin: 'java-library' -apply plugin: 'war' -apply plugin: 'eclipse' -apply plugin: 'java-library-distribution' +plugins { + id 'java-library' + id 'war' + id 'eclipse' + id 'distribution' +} jar { manifest { @@ -22,8 +24,8 @@ sourceSets.test.runtimeClasspath += configurations.providedCompile dependencies { implementation group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion - implementation 'org.apache.commons:commons-lang3:3.20.0' - testImplementation group: 'junit', name: 'junit', version: '4.+' + implementation group: 'org.apache.commons', name: 'commons-lang3', version: commonsLang3Version + testImplementation group: 'junit', name: 'junit', version: junitVersion } task releases(type: Copy) { |
