Skip to content

Commit

Permalink
Spring Boot upgraded to 2.1.0.RELEASE.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekbilski committed Nov 2, 2018
1 parent 1744769 commit 49d6f2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Expand Up @@ -12,9 +12,9 @@ dependencies {
exclude group: "junit", module: "junit"
}
testImplementation("io.rest-assured:rest-assured")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntime("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
testImplementation("org.assertj:assertj-core:${assertjVersion}")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntime("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.assertj:assertj-core")
}

test {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
@@ -1,7 +1,7 @@
buildscript {
ext {
springBootVersion = "2.1.0.M2"
junitVersion = "5.3.0"
springBootVersion = "2.1.0.RELEASE"
junitVersion = "5.3.1"
assertjVersion = "3.11.1"
}
repositories {
Expand Down

0 comments on commit 49d6f2d

Please sign in to comment.