我在 IntelliJ 中使用 ajc 编译器以及 aspectj-maven-plugin,我在其中声明了以下排除项:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/EmployeeAccessAspect.java</exclude>
</excludes>
<complianceLevel>1.8</complianceLevel>
<showWeaveInfo>true</showWeaveInfo>
<verbose>true</verbose>
</configuration>
</plugin>
当我使用 编译时mvn compile
,一切都很好,并且该EmployeeAccessAspect
方面被正确忽略了。
但是,如果我Make
在 IntelliJ 中进行项目,它只会编织它找到的所有方面(并且完全忽略 maven 排除项)。
我总是可以破解 ajc 编译器选项或方面路径来实现我想要的,但是如果我出于某种原因必须排除一个方面,它会让我改变两个地方。
有什么办法可以让maven插件和ajc编译同步?我正在使用 IntelliJ 15。