Skip to content

Commit

Permalink
#134 Upgrade Groovy version to 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszNaKodach committed Aug 6, 2020
1 parent 0b4d277 commit c32e80f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ allprojects {
compile("javax.activation:activation:1.1")
compile("org.glassfish.jaxb:jaxb-runtime:2.3.0")

compile("org.springframework.boot:spring-boot-starter-validation")

//Kotlin Arrow
compile("io.arrow-kt:arrow-core:${Versions.arrowVersion}")
compile("io.arrow-kt:arrow-syntax:${Versions.arrowVersion}")
Expand Down Expand Up @@ -97,6 +99,7 @@ allprojects {
testCompile("org.jetbrains.kotlin:kotlin-test")
testCompile("org.spockframework:spock-core:${Versions.spockVersion}")
testCompile("org.spockframework:spock-spring:${Versions.spockVersion}")
testCompile("org.codehaus.groovy:groovy:${Versions.groovyVersion}")
testCompile("org.junit.jupiter:junit-jupiter-api:${Versions.jUnitVersion}")
testCompile("org.junit.jupiter:junit-jupiter-params:${Versions.jUnitVersion}")
testRuntime("org.junit.jupiter:junit-jupiter-engine:${Versions.jUnitVersion}")
Expand Down Expand Up @@ -155,7 +158,6 @@ dependencies {
compile("com.fasterxml.jackson.module:jackson-module-kotlin")
compile("com.github.ulisesbocchio:jasypt-spring-boot-starter:${Versions.jasyptVersion}")


//Swagger 2 - REST Api documentation
compile("io.springfox:springfox-swagger2:${Versions.swaggerVersion}")
compile("io.springfox:springfox-swagger-ui:${Versions.swaggerVersion}")
Expand Down
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/org/bialydunajec/gradle/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ object Versions {
const val googleApiClientVersion = "1.30.2"
const val googleAuthLibraryOauth2HttpVersion = "0.16.2"
const val googlePhotosLibraryClientVersion = "1.2.0"
const val groovyVersion = "3.0.4"
const val jasyptVersion = "2.1.1"
const val jaxbApiVersion = "2.3.0"
const val jfairyVersion = "0.6.2"
Expand All @@ -22,6 +23,6 @@ object Versions {
const val rxJavaVersion ="2.2.0"
const val rxRelayVersion = "2.1.0"
const val spekVersion = "2.0.6"
const val spockVersion = "1.3-groovy-2.5"
const val spockVersion = "2.0-M3-groovy-3.0"
const val swaggerVersion = "2.9.2"
}

0 comments on commit c32e80f

Please sign in to comment.