我正在尝试为maven编写编译器插件:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<inherited>true</inherited>
<executions>
<execution>
<id>my-custom-compiler</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerVersion>1.8</compilerVersion>
<compilerArgument>-Xdiags:verbose</compilerArgument>
<compilerArgument>-proc:none</compilerArgument>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<excludes>
<exclude>${project.basedir}\src\main\java\testfiles\</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
现在,当我运行mvn clean install时,我看到了:
[INFO] --- maven-compiler-plugin:3.8.1:compile(默认编译)
默认编译器仍在执行。总是会这样吗?还是有一种停止执行的方法。它没有任何伤害。但是编译相同的2000个奇数文件会使构建速度变慢。
答案 0 :(得分:1)
为什么不将配置添加到默认编译中,如:
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<inherited>true</inherited>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerVersion>1.8</compilerVersion>
<compilerArgument>-Xdiags:verbose</compilerArgument>
<compilerArgument>-proc:none</compilerArgument>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<excludes>
<exclude>${project.basedir}\src\main\java\testfiles\</exclude>
</excludes>
</configuration>
</plugin>
然后clean install
将只运行您的配置。