我正在使用jaxb2 xjc
插件从XSD
生成java文件。因此,我曾经按如下方式配置我的pom.xml:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<packageName>com.mypackage.model</packageName>
<schemaDirectory>${basedir}/src/main/resources/XSD</schemaDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
我将我的开发环境改为Eclipse Indigo,这不再适用了。错误说:“生命周期配置未涵盖插件执行”。我知道我必须以不同的方式定义我的插件的执行,以便它在我的新环境中工作。
我按照此页M2E plugin execution not covered上的说明操作,但在执行generate-sources
阶段时未生成源文件。
有人能告诉我如何精确地重构我的pom以便正确生成我的文件吗?
感谢您的帮助!
答案 0 :(得分:15)
事实证明我 最终找到了答案! Eclipse与Maven的集成已经知道许多Maven插件的兼容性问题。
如果您可以从Eclipse外部的命令行成功运行Maven构建,但Eclipse在POM中显示“执行未涵盖”错误,请尝试添加此插件:
<build>
...
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<versionRange>[1.3,)</versionRange>
<goals>
<goal>xjc</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
如上面的评论所示,这个插件在Eclipse之外没有做任何事情。它只是告诉Eclipse何时执行JAXB插件,因为Eclipse不够智能,无法自行解决。
我在another StackOverflow question上找到了这个代码段,并将其用于“jaxb2-maven-plugin”插件,而不是另一个问题中的插件问题。
答案 1 :(得分:3)
您也可以切换到M2E支持的maven-jaxb2-plugin
。史蒂夫珀金斯上面的答案通常适用于那些M2E不支持的插件。
答案 2 :(得分:0)
我不确定这是否适用于您的环境,但如果将应用程序拆分为maven模块,那么我找到的最符合我需求的解决方案是从eclipse IDE中删除所有受影响的模块。每当我需要重新生成时,我只需使用mvn install从命令行构建。 Eclipse然后使用来自repo的包而不是试图自己构建,不需要runOnIncremental
小提琴(我使用了很长时间),没有红色模块/行,也构建得更快。