Merge pull request #642 from dsyer/kotlin-plugin

Add extra dependency to kotlin plugin
This commit is contained in:
Ryan Baxter
2026-05-14 11:52:00 -04:00
committed by GitHub
2 changed files with 14 additions and 2 deletions
+13 -1
View File
@@ -306,13 +306,25 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<configuration>
<!--https://github.com/spring-projects/spring-framework/blob/main/buildSrc/src/main/java/org/springframework/build/KotlinConventions.java#L47-L58 -->
<apiVersion>2.2</apiVersion>
<languageVersion>2.2</languageVersion>
<jvmTarget>17</jvmTarget>
<javaParameters>true</javaParameters>
<args>-Xjsr305=strict -opt-in=kotlin.RequiresOptIn -Xjdk-release=17 -Xannotation-default-target=param-property</args>
<args>
<arg>-Xjsr305=strict</arg>
<arg>-opt-in=kotlin.RequiresOptIn</arg>
<arg>-Xjdk-release=17</arg>
<arg>-Xannotation-default-target=param-property</arg>
</args>
</configuration>
<executions>
<execution>
+1 -1
View File
@@ -19,7 +19,7 @@
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>4.0.3-SNAPSHOT</spring-boot.version>
<spring-boot.version>4.0.7-SNAPSHOT</spring-boot.version>
<okhttp.version>4.12.0</okhttp.version>
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
<central-publishing-maven-plugin.version>0.9.0</central-publishing-maven-plugin.version>