diff options
author | Thomas Lenz <thomas.lenz@iaik.tugraz.at> | 2023-01-12 12:12:57 +0000 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@iaik.tugraz.at> | 2023-01-12 12:12:57 +0000 |
commit | e78fccac558a93f18bae96ddb6c8e131afaf946d (patch) | |
tree | 7ad33b2d27902f90af1b5db304d5819eca14bab2 /build.gradle | |
parent | 27b8f07c7c0b5cac2c1eae6181335c8da03722b3 (diff) | |
parent | a070139872c65dc19d7fdd0b489474165627a4f1 (diff) | |
download | pdf-as-4-e78fccac558a93f18bae96ddb6c8e131afaf946d.tar.gz pdf-as-4-e78fccac558a93f18bae96ddb6c8e131afaf946d.tar.bz2 pdf-as-4-e78fccac558a93f18bae96ddb6c8e131afaf946d.zip |
Merge branch 'feature/bulk_light_sign' into 'development'
Feature/bulk light sign
See merge request egiz/pdf-as-4!8
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 4d5f0d41..449802e5 100644 --- a/build.gradle +++ b/build.gradle @@ -12,8 +12,13 @@ buildscript { allprojects { apply plugin: "com.github.ben-manes.versions" - repositories { mavenCentral() } - version = '4.2.1-SNAPSHOT' + repositories { + mavenCentral() + maven { + url "https://repo.spring.io/milestone/" + } + } + version = '4.3.0-SNAPSHOT' } subprojects { @@ -30,8 +35,15 @@ subprojects { repositories { mavenCentral() + mavenLocal() maven { + url "https://repo.spring.io/milestone/" + mavenContent { + releasesOnly() + } + } + maven { url "https://apps.egiz.gv.at/maven/" mavenContent { releasesOnly() @@ -46,7 +58,9 @@ subprojects { } dependencies { - testImplementation 'junit:junit:4.13.2' + compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.24' + annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.24' + testImplementation 'junit:junit:4.13.2' } task sourcesJar(type: Jar, dependsOn: classes) { @@ -58,7 +72,7 @@ subprojects { archives sourcesJar } - sourceCompatibility = 1.7 + sourceCompatibility = 1.8 compileJava.options.encoding = "UTF-8" compileTestJava.options.encoding = "UTF-8" project.ext{ @@ -70,8 +84,8 @@ subprojects { //tomcatVersion = '7.0.54'; //tomcatVersion = '8.0.36'; tomcatVersion = '9.0.46'; - slf4jVersion = '1.7.32' - cxfVersion = '3.4.5' + slf4jVersion = '1.7.36' + cxfVersion = '3.5.5' } jar { manifest.attributes provider: 'EGIZ', 'Specification-Version': getCheckedOutGitCommitHash(), 'Implementation-Version': project.version } |