使用 maven 为 eclipse 编译器设置 Java 6 注释处理配置

2022-09-03 07:38:04

为 Java 6 注释处理器设置 eclipse 项目编译器配置的最佳方法是什么?

我的解决方案是手动设置 和 文件。这有点麻烦:org.eclipse.jdt.apt.core.prefsfactorypath

  • 在工厂路径文件中引用处理器 jar
  • 在 中配置 eclipse 注释处理器输出目录属性(org.eclipse.jdt.apt.genSrcDirorg.eclipse.jdt.apt.core.prefs)
  • 将 eclipse 注释处理器输出目录添加为源文件夹

一个问题是,eclipse生成的源代码将使用maven进行编译。只有它删除了 eclipse 生成的源文件,因此才是可靠的。(Eclipse 和 javac 生成的源文件可能不同步。maven clean compile

有没有更好的解决方案来配置maven,而无需在maven源路径上生成 eclipse 生成的源文件?

<project>
  <properties>
    <eclipse.generated.src>${project.build.directory}/eclipse</eclipse.generated.src>
  </properties>
  <build>
      <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <version>1.4</version>
            <executions>
                <execution>
                  <id>add-source</id>
                  <phase>generate-sources</phase>
                  <goals> <goal>add-source</goal> </goals>
                  <configuration>
                      <sources>
                        <source>${eclipse.generated.src}</source>
                      </sources>
                    </configuration>
              </execution>
            </executions>
          </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-eclipse-plugin</artifactId>
        <configuration>
          <additionalConfig>
            <file> <name>.factorypath</name>
        <content><![CDATA[<factorypath>
  <factorypathentry kind="VARJAR" id="M2_REPO/processor/processor.jar" enabled="true" runInBatchMode="false"/>
  </factorypath>
  ]]>      </content>
            </file>
            <file>
              <name>.settings/org.eclipse.jdt.apt.core.prefs</name>
        <content><![CDATA[
  eclipse.preferences.version=1
  org.eclipse.jdt.apt.aptEnabled=true
  org.eclipse.jdt.apt.genSrcDir=${eclipse.generated.src}
  org.eclipse.jdt.apt.reconcileEnabled=true
   ]]>     </content>
            </file>
          </additionalConfig>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

答案 1

更新:您可以尝试使用apt-maven-插件。它目前提供三个目标:

可以将目标配置为作为生成的一部分运行,如下所示:

<build>
  ...
  <plugins>
    ...
    <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>apt-maven-plugin</artifactId>
      <version>1.0-alpha-2</version>
      <executions>
        <execution>
          <goals>
            <goal>process</goal>
            <goal>test-process</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
    ...
  </plugins>
  ...
</build>

默认情况下,输出目录设置为 、${project.build.directory}/generated-sources/apt

有一个开放的Jira反对编译器插件来添加对Java 6的APT支持,如果你想在未来的版本中看到这一点,你可以去投票支持它。


答案 2

我正在使用 http://code.google.com/p/maven-annotation-plugin/ 配置起来更简单。您可以通过两种方式使用它:

  • 在编译期间生成源(配置如下)
  • “手动”生成源到 src/main/生成,并将它们保存在 SCM 上
       <plugin>
            <groupId>org.bsc.maven</groupId>
            <artifactId>maven-processor-plugin</artifactId>
            <executions>
                <execution>
                    <id>process</id>
                    <goals>
                        <goal>process</goal>
                    </goals>
                    <phase>generate-sources</phase>
                    <configuration>
                        <compilerArguments>-encoding ${project.build.sourceEncoding}</compilerArguments>
                    </configuration>
                </execution>
            </executions>
        </plugin>



       <plugin>
            <groupId>org.bsc.maven</groupId>
            <artifactId>maven-processor-plugin</artifactId>
            <executions>
                <execution>
                    <id>process-test</id>
                    <goals>
                        <goal>process-test</goal>
                    </goals>
                    <phase>generate-test-sources</phase>
                    <configuration>
                        <compilerArguments>-encoding ${project.build.sourceEncoding}</compilerArguments>
                    </configuration>
                </execution>
            </executions>
        </plugin>


      <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.1</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <encoding>${project.build.sourceEncoding}</encoding>
                <!-- Disable annotation processors during normal compilation -->
                <compilerArgument>-proc:none</compilerArgument>
            </configuration>
        </plugin>

推荐