From d749d74bd48e9a9e52dcc5226748a180b9426688 Mon Sep 17 00:00:00 2001 From: Stefan Kapferer Date: Sat, 2 Nov 2019 16:53:46 +0100 Subject: [PATCH] Update to CML v5.2.0 --- build.gradle | 17 +++++++---------- gradle.properties | 7 +++++++ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 26c7d38..650069e 100644 --- a/build.gradle +++ b/build.gradle @@ -12,9 +12,6 @@ sourceCompatibility = 1.8 repositories { mavenCentral() - maven { - url 'https://oss.sonatype.org/content/repositories/snapshots' - } } if (!project.hasProperty('signing.secretKeyRingFile')) { @@ -22,13 +19,13 @@ if (!project.hasProperty('signing.secretKeyRingFile')) { } dependencies { - implementation 'org.reflections:reflections:0.9.11' - implementation 'org.springframework.boot:spring-boot-autoconfigure:2.2.0.RELEASE' - implementation 'org.springframework:spring-web:5.2.0.RELEASE' - implementation 'org.apache.commons:commons-lang3:3.9' - implementation 'commons-io:commons-io:2.6' - implementation 'org.yaml:snakeyaml:1.25' - implementation 'org.contextmapper:context-mapper-dsl:5.1.1-SNAPSHOT' + implementation "org.reflections:reflections:${reflectionsVersion}" + implementation "org.springframework.boot:spring-boot-autoconfigure:${springBootVersion}" + implementation "org.springframework:spring-web:${springWebVersion}" + implementation "org.apache.commons:commons-lang3:${commonsLangVersion}" + implementation "commons-io:commons-io:${commonsIOVersion}" + implementation "org.yaml:snakeyaml:${snakeYMLVersion}" + implementation "org.contextmapper:context-mapper-dsl:${cmlVersion}" testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: jUnitVersion testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: jUnitVersion diff --git a/gradle.properties b/gradle.properties index 77bc4eb..8d528da 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,3 +4,10 @@ ossReleaseStagingRepository=https://oss.sonatype.org/service/local/staging/deplo # dependency versions jUnitVersion=5.5.2 +cmlVersion=5.2.0 +reflectionsVersion=0.9.11 +springBootVersion=2.2.0.RELEASE +springWebVersion=5.2.0.RELEASE +commonsLangVersion=3.9 +commonsIOVersion=2.6 +snakeYMLVersion=1.25