aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorThomas <>2023-01-09 17:33:26 +0100
committerThomas <>2023-01-09 17:33:26 +0100
commitbf0200054b663dad9f04af4126c5a31f80b8003a (patch)
treefc76496d4a0149a54e8cffdc0210334cd58d2c51 /build.gradle
parente69ba716ebae7307645ff9c640967d58ef48b9f4 (diff)
downloadpdf-as-4-bf0200054b663dad9f04af4126c5a31f80b8003a.tar.gz
pdf-as-4-bf0200054b663dad9f04af4126c5a31f80b8003a.tar.bz2
pdf-as-4-bf0200054b663dad9f04af4126c5a31f80b8003a.zip
test(web): add very simple start-up and signing test
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 14 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 4d5f0d41..fab5e81a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -12,7 +12,12 @@ buildscript {
allprojects {
apply plugin: "com.github.ben-manes.versions"
- repositories { mavenCentral() }
+ repositories {
+ mavenCentral()
+ maven {
+ url "https://repo.spring.io/milestone/"
+ }
+ }
version = '4.2.1-SNAPSHOT'
}
@@ -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,7 @@ subprojects {
}
dependencies {
- testImplementation 'junit:junit:4.13.2'
+ testImplementation 'junit:junit:4.13.2'
}
task sourcesJar(type: Jar, dependsOn: classes) {