Bump Kotlin to version 2.1.10

This commit is contained in:
Erik C. Thauvin 2025-03-19 01:26:45 -07:00
parent b235ad4240
commit c9d9e4695c
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 19 additions and 2 deletions

9
examples/kotlin/.idea/kotlin.iml generated Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
examples/kotlin/.idea/modules.xml generated Normal file
View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/kotlin.iml" filepath="$PROJECT_DIR$/.idea/kotlin.iml" />
</modules>
</component>
</project>

View file

@ -1,8 +1,8 @@
plugins {
id("application")
id("com.github.ben-manes.versions") version "0.51.0"
kotlin("jvm") version "2.0.20"
kotlin("kapt") version "1.9.24"
kotlin("jvm") version "2.1.10"
kotlin("kapt") version "1.9.25"
}
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)