Skip to content

Commit

Permalink
Migration to Kotlin 1.7 and other latest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
VladLouk committed Jul 6, 2022
1 parent 4439363 commit 3cc6aab
Show file tree
Hide file tree
Showing 5 changed files with 283 additions and 215 deletions.
16 changes: 10 additions & 6 deletions buildSrc/src/main/kotlin/CoreVersions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

object CoreVersion {
const val ASSERTK_JVM = "0.25"
const val GUAVA = "31.0.1-jre"
const val GUAVA = "31.1-jre"
const val JAVA_HAMCREST = "2.0.0.0"
const val JAVA_JWT = "4.0.0"
const val JAXB_API = "2.3.1"
const val JAXB_IMPL = "3.0.2"
const val JMETER = "5.4.3"
const val JAXB_IMPL = "4.0.0"
const val JMETER = "5.5"
const val JMETER_JPGC_CASUTG = "2.10"
const val OPENAPI = "1.6.3"
const val OPENAPI = "1.6.9"
const val REACTOR_BOM = "Californium-RELEASE"
const val WIREMOCK_JRE8 = "2.32.0"
const val SPRING_MAIL = "5.5.12"
const val SPRING_CLOUD_FW = "3.2.6"
const val SPRING_MAIL = "5.5.13"
const val WIREMOCK_JRE8 = "2.33.2"
const val SWG_VLD_WIREMOCK = "2.28.2"
const val COMMONS_IO = "2.11.0"
}
4 changes: 2 additions & 2 deletions capsa-core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies {
implementation("com.atlassian.oai:swagger-request-validator-wiremock:2.18.1")
implementation("com.atlassian.oai:swagger-request-validator-wiremock:${CoreVersion.SWG_VLD_WIREMOCK}")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.springdoc:springdoc-openapi-ui")
implementation("com.auth0:java-jwt:3.15.0")
implementation("com.auth0:java-jwt:${CoreVersion.JAVA_JWT}")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
4 changes: 2 additions & 2 deletions capsa-perfrunner/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ dependencies {
implementation("org.junit.platform:junit-platform-launcher")
implementation("org.springframework.boot:spring-boot-starter-test")
implementation("org.springframework.ws:spring-ws-core")
implementation("org.springframework.cloud:spring-cloud-function-web:3.1.5")
implementation("org.springframework.cloud:spring-cloud-function-web:${CoreVersion.SPRING_CLOUD_FW}")
implementation("org.apache.jmeter:ApacheJMeter_http")
implementation("kg.apc:jmeter-plugins-casutg")
implementation("commons-io:commons-io:2.11.0")
implementation("commons-io:commons-io:${CoreVersion.COMMONS_IO}")
implementation("com.willowtreeapps.assertk:assertk-jvm")
implementation(project(":capsa-it"))
}
Expand Down
Loading

0 comments on commit 3cc6aab

Please sign in to comment.