aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@iaik.tugraz.at>2023-01-12 12:26:00 +0000
committerThomas Lenz <thomas.lenz@iaik.tugraz.at>2023-01-12 12:26:00 +0000
commitab328e055e01b12a91c8ccee4ac0cbea3e0fb282 (patch)
treee0c57f79dc1a57d3f6c4e3af1d982b750bad96f9 /build.gradle
parent74668d9f7e8cfb9c729e804067984d0f5e731f2f (diff)
parente78fccac558a93f18bae96ddb6c8e131afaf946d (diff)
downloadpdf-as-4-ab328e055e01b12a91c8ccee4ac0cbea3e0fb282.tar.gz
pdf-as-4-ab328e055e01b12a91c8ccee4ac0cbea3e0fb282.tar.bz2
pdf-as-4-ab328e055e01b12a91c8ccee4ac0cbea3e0fb282.zip
Merge branch 'development' into 'feature/issue_73'
# Conflicts: # build.gradle # pdf-as-pdfbox-2/src/main/java/at/gv/egiz/pdfas/lib/impl/signing/pdfbox2/PADESPDFBOXSigner.java
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle20
1 files changed, 16 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index af7e5af3..be66b393 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()
@@ -72,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 }