File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 80
80
81
81
<build >
82
82
<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 >
83
112
<plugin >
84
113
<groupId >org.jetbrains.kotlin</groupId >
85
114
<artifactId >kotlin-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments