Skip to content

Commit

Permalink
fix: kapt configuration properties and maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
testersen committed Apr 18, 2024
1 parent 482a936 commit 56a4d4e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
kotlin("jvm") version "1.9.22"
kotlin("plugin.spring") version "1.9.22"
kotlin("kapt") version "1.9.22"
id("org.springframework.boot") version "3.2.3"
kotlin("jvm") version "1.9.23"
kotlin("plugin.spring") version "1.9.23"
kotlin("kapt") version "1.9.23"
id("org.springframework.boot") version "3.2.4"
id("io.spring.dependency-management") version "1.1.4"
id("sh.tnn") version "0.2.0"
id("sh.tnn") version "0.3.0"
`maven-publish`
}

Expand All @@ -16,7 +16,7 @@ repositories {
}

dependencies {
kapt("org.springboot.boot:spring-boot-configuration-processor:3.2.3")
kapt("org.springframework.boot:spring-boot-configuration-processor:3.2.4")
api("no.telenor.kt:mdc-transaction:0.2.+")
compileOnly("org.springframework.boot:spring-boot-starter-web")
testImplementation(kotlin("test"))
Expand All @@ -33,7 +33,7 @@ tasks.test {
useJUnitPlatform()
}

kotlin.jvmToolchain(17)
kotlin.jvmToolchain(21)

publishing {
repositories.github.actions()
Expand Down
11 changes: 0 additions & 11 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}

rootProject.name = "boot3-configurable-mdc"

0 comments on commit 56a4d4e

Please sign in to comment.