Skip to content

Commit 8092919

Browse files
authored
Merge pull request #1 from icerockdev/develop
Downgrade kotlin version to 2.0.21
2 parents 39c9351 + b88de41 commit 8092919

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spring Boot Starter Konform
22

3-
[![Maven Central](https://img.shields.io/maven-central/v/dev.icerock/spring-boot-starter-konform.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22dev.icerock%22%20AND%20a:%22spring-boot-starter-konform%22)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.icerockdev.boko/spring-boot-starter-konform.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.icerockdev.boko/spring-boot-starter-konform)
44
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
55

66
A Spring Boot Starter for seamless integration with [Konform](https://github.com/konform-kt/konform) validation library, providing a type-safe and flexible way to validate your request DTOs in Spring Boot applications.
@@ -18,7 +18,7 @@ Add the following dependency to your `build.gradle.kts`:
1818

1919
```kotlin
2020
dependencies {
21-
implementation("com.icerockdev.boko:spring-boot-starter-konform:0.1.0")
21+
implementation("com.icerockdev.boko:spring-boot-starter-konform:0.1.1")
2222
}
2323
```
2424

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ import org.jreleaser.model.Active
66
import org.gradle.api.Action
77

88
plugins {
9-
kotlin("jvm") version "2.2.10"
10-
kotlin("kapt") version "2.2.10"
9+
kotlin("jvm") version "2.0.21"
10+
kotlin("kapt") version "2.0.21"
1111
id("maven-publish")
1212
id("java-library")
1313
id("signing")
1414
id("org.jreleaser") version "1.18.0"
1515
}
1616

1717
group = "com.icerockdev.boko"
18-
version = "0.1.0"
18+
version = "0.1.1"
1919

2020
repositories {
2121
mavenCentral()
@@ -28,7 +28,7 @@ dependencies {
2828
implementation("org.springframework.boot:spring-boot-starter-aop:3.1.12")
2929

3030
testImplementation(kotlin("test"))
31-
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:2.2.10")
31+
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:2.0.21")
3232
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.5.0")
3333
testImplementation("org.junit.jupiter:junit-jupiter-api:5.5.0")
3434
testImplementation("org.springframework.boot:spring-boot-starter-web:3.1.12")

0 commit comments

Comments
 (0)