Skip to content

Commit

Permalink
Update to CML v5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-ka committed Nov 2, 2019
1 parent 2d370a6 commit d749d74
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
17 changes: 7 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,20 @@ sourceCompatibility = 1.8

repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}

if (!project.hasProperty('signing.secretKeyRingFile')) {
project.ext.'signing.secretKeyRingFile' = "${rootDir}/secret-key.gpg"
}

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
Expand Down
7 changes: 7 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d749d74

Please sign in to comment.