``` <plugin> <groupId>org.apache.m...
# announcements
p
Copy code
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <executions>
        <execution>
            <id>default-compile</id>
            <phase>none</phase>
        </execution>
What does this do? There is nothing about
default-compile
goal anywhere in Maven docs.
c
default-compile
is not a goal but execution id. The idea is to disable default compile execution and introduce our own to get control over goals execution order (for example we can run kotlin compiler before javac)
p
awesome, thanks Sergey!