diff options
author | Thomas <> | 2023-01-09 17:33:26 +0100 |
---|---|---|
committer | Thomas <> | 2023-01-09 17:33:26 +0100 |
commit | bf0200054b663dad9f04af4126c5a31f80b8003a (patch) | |
tree | fc76496d4a0149a54e8cffdc0210334cd58d2c51 /build.gradle | |
parent | e69ba716ebae7307645ff9c640967d58ef48b9f4 (diff) | |
download | pdf-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.gradle | 16 |
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) { |