成功跟踪此HowTo以将Lombok和AspectJ集成到Maven构建中之后,我的代码在eclipse中不再编译。 由于缺少通常由Lombok生成的getter / setter / constructors,所以到处都有很多错误。
我的目标是能够使用eclipse使用Lombok进行开发,然后在命令行上使用mvn clean install
进行构建。
我试图在日食中skip AspectJ weaving,但没有成功。 这是我用来跳过AspectJ的配置文件:
<profile>
<id>noAspectJ</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<executions>
<execution>
<id>process-classes</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>1.7</compilerVersion>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</profile>
答案 0 :(得分:2)
我找到的最佳解决方案是从Eclipse中删除AspectJ插件,因为它不需要它。 这样我也可以避免使用个人资料。
但如果我在eclipse中使用JUnit测试,这可能会导致一些问题。