Skip to content

Commit

Permalink
Update to Kotlin 1.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Brutus5000 committed Jan 21, 2022
1 parent b06dacd commit d82b861
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val dockerTag: String? by project

plugins {
val kotlinVersion = "1.6.0"
val kotlinVersion = "1.6.10"

kotlin("jvm") version kotlinVersion
kotlin("kapt") version kotlinVersion
Expand All @@ -30,6 +30,12 @@ repositories {
maven("https://jitpack.io")
}

dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-dependencies:2021.0.0")
}
}

dependencies {
kapt("org.springframework.boot:spring-boot-configuration-processor")
implementation("org.springframework.boot:spring-boot-configuration-processor")
Expand All @@ -42,6 +48,9 @@ dependencies {
implementation("nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.cloud:spring-cloud-stream")
implementation("org.springframework.cloud:spring-cloud-stream-binder-rabbit")
implementation("org.springframework.cloud:spring-cloud-function-kotlin")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions")
implementation("io.swagger.core.v3:swagger-annotations:2.1.12")
Expand Down

0 comments on commit d82b861

Please sign in to comment.