diff --git a/README.md b/README.md index 25366df..0326ea7 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Once the system is running, navigate to http://localhost:8080/ to view the Swagger documentation. ## Technology -- [JDK21](https://openjdk.org/projects/jdk/21/) - Latest JDK with long-term support +- [JDK25](https://openjdk.org/projects/jdk/25/) - Latest JDK with long-term support - [Kotlin](https://github.com/JetBrains/kotlin) - Programming language with Java interoperability - [Gradle](https://github.com/gradle/gradle) - Used for compilation, building, testing and dependency management - [Spring Boot Web MVC](https://github.com/spring-projects/spring-boot) - For creating REST APIs diff --git a/build.gradle.kts b/build.gradle.kts index 6540131..45df5f1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ repositories { } kotlin { - jvmToolchain(21) + jvmToolchain(25) compilerOptions { freeCompilerArgs.addAll("-Xjsr305=strict") }