Skip to content

Commit 58ea85d

Browse files
JAVA-33541 Fixing kotlin build time - spring-boot-kotlin-2
2 parents 7819cd1 + 636387b commit 58ea85d

File tree

1 file changed

+1
-36
lines changed

1 file changed

+1
-36
lines changed

spring-boot-kotlin-2/pom.xml

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -63,45 +63,10 @@
6363
<groupId>org.springframework.boot</groupId>
6464
<artifactId>spring-boot-maven-plugin</artifactId>
6565
</plugin>
66-
<plugin>
67-
<groupId>org.apache.maven.plugins</groupId>
68-
<artifactId>maven-compiler-plugin</artifactId>
69-
<version>${maven-compiler-plugin.version}</version>
70-
<configuration>
71-
<source>${java.version}</source>
72-
<target>${java.version}</target>
73-
</configuration>
74-
<executions>
75-
<!-- Replacing default-compile as it is treated specially by maven -->
76-
<execution>
77-
<id>default-compile</id>
78-
<phase>none</phase>
79-
</execution>
80-
<!-- Replacing default-testCompile as it is treated specially by maven -->
81-
<execution>
82-
<id>default-testCompile</id>
83-
<phase>none</phase>
84-
</execution>
85-
<execution>
86-
<id>java-compile</id>
87-
<phase>none</phase>
88-
</execution>
89-
<execution>
90-
<id>java-test-compile</id>
91-
<phase>none</phase>
92-
</execution>
93-
</executions>
94-
</plugin>
9566
<plugin>
9667
<artifactId>kotlin-maven-plugin</artifactId>
9768
<groupId>org.jetbrains.kotlin</groupId>
9869
<version>${kotlin.version}</version>
99-
<configuration>
100-
<compilerPlugins>
101-
<plugin>spring</plugin>
102-
</compilerPlugins>
103-
<jvmTarget>1.8</jvmTarget>
104-
</configuration>
10570
<dependencies>
10671
<dependency>
10772
<groupId>org.jetbrains.kotlin</groupId>
@@ -145,7 +110,7 @@
145110
</build>
146111

147112
<properties>
148-
<kotlin.version>1.7.0</kotlin.version>
113+
<kotlin.version>1.9.24</kotlin.version>
149114
</properties>
150115

151116
</project>

0 commit comments

Comments
 (0)