Skip to content

Commit 636387b

Browse files
author
Amit Pandey
committed
revert boot
1 parent 97294ea commit 636387b

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

spring-boot-kotlin/pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,35 @@
8080

8181
<build>
8282
<plugins>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-compiler-plugin</artifactId>
86+
<version>${maven-compiler-plugin.version}</version>
87+
<configuration>
88+
<source>${java.version}</source>
89+
<target>${java.version}</target>
90+
</configuration>
91+
<executions>
92+
<!-- Replacing default-compile as it is treated specially by maven -->
93+
<execution>
94+
<id>default-compile</id>
95+
<phase>none</phase>
96+
</execution>
97+
<!-- Replacing default-testCompile as it is treated specially by maven -->
98+
<execution>
99+
<id>default-testCompile</id>
100+
<phase>none</phase>
101+
</execution>
102+
<execution>
103+
<id>java-compile</id>
104+
<phase>none</phase>
105+
</execution>
106+
<execution>
107+
<id>java-test-compile</id>
108+
<phase>none</phase>
109+
</execution>
110+
</executions>
111+
</plugin>
83112
<plugin>
84113
<groupId>org.jetbrains.kotlin</groupId>
85114
<artifactId>kotlin-maven-plugin</artifactId>

0 commit comments

Comments
 (0)