ajc 在 Maven 命令行上,但不在 Eclipse 中以保持 Lombok 工作

ajc on Maven command line, but not in Eclipse in order to keep Lombok working

成功遵循此 HowTo 将 Lombok 和 AspectJ 集成到 Maven 构建中后,我的代码不再在 Eclipse 中编译。 由于缺少通常由 Lombok 生成的 getter/setter/constructors,到处都有很多错误。

我的目标是能够使用 Eclipse 使用 Lombok 进行开发,然后在命令行上使用 mvn clean install 进行构建。

我尝试在 eclipse 中 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>

我找到的最佳解决方案是从我的 Eclipse 中删除 AspectJ 插件,因为那里不需要它。 这样我也可以避免使用配置文件。

但是如果我在 eclipse 中使用 JUnit 测试,这可能会导致一些问题。