Skip to content

Commit 377e8c4

Browse files
Change the maven compile execution for Java 8 to override the default compile (#89)
This avoids performing a default-compile, compile-java-8, and compile-java-9 execution. Only default-compile and compile-java-9 is executed.
1 parent 5b73076 commit 377e8c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@
143143
<version>${maven-compiler-plugin.version}</version>
144144
<executions>
145145
<execution>
146-
<id>compile-java-8</id>
146+
<!-- Named specifically to override the default compile execution -->
147+
<id>default-compile</id>
147148
<goals>
148149
<goal>compile</goal>
149150
</goals>

0 commit comments

Comments
 (0)