我有一个maven配置文件,触发xsd
和wsdl
类的自动生成,如下所示:
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-plugin</artifactId>
<version>${cxf-xjc-plugin}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/src/main/java</sourceRoot>
<xsdOptions>
//xsds, wsdls etc
</xsdOptions>
</configuration>
<goals>
<goal>xsdtojava</goal>
</goals>
</execution>
</executions>
</plugin>
生成的课程转到:target/generated/src/main/java
。
问题:运行'mvn clean package'将始终删除这些类。我该怎样预防呢?是否可以clean
删除target
目录的全部内容而不是generated/
目录?
答案 0 :(得分:4)
有可能不使用maven-clean-plugin
删除某个目录,但这绝对不是一个好主意:
您可以使用excludeDefaultDirectories
和filesets
参数排除maven-clean-plugin
的目录:
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6.1</version>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}</directory>
<excludes>
<exclude>generated/*</exclude>
</excludes>
</fileset>
</filesets>
</configuration>
</plugin>
请注意,我强烈建议您 NOT 使用此解决方案。
您实际的问题不是每次构建时都重新生成类,因为它需要花费很多时间。然后,目标是通过使用自定义配置文件来避免生成:
<profiles>
<profile>
<id>noGenerate</id>
<properties>
<xjc.generate>none</xjc.generate>
</properties>
</profile>
<profile>
<id>generate</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<xjc.generate>generate-sources</xjc.generate>
</properties>
</profile>
</profiles>
使用以下插件定义:
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-plugin</artifactId>
<version>${cxf-xjc-plugin}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>${xjc.generate}</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/src/main/java</sourceRoot>
<xsdOptions>
//xsds, wsdls etc
</xsdOptions>
</configuration>
<goals>
<goal>xsdtojava</goal>
</goals>
</execution>
</executions>
</plugin>
似乎cxf-xjc-plugin
没有任何skip
参数,所以当我们想要避免执行时,我们不得不求助phase
设置none
(这是一个没有记录的功能,但它的工作原理)。
诀窍是定义两个配置文件:一个,默认激活,设置一个属性告诉cxf-xjc-plugin
在generate-soures
阶段执行,而另一个设置一个属性告诉{{1不执行。
因此,当您想要生成类时,可以使用cxf-xjc-plugin
调用Maven,并且当您希望不生成类时,可以使用mvn clean install
调用Maven。
这里真正的好处和好处是,每当您决定生成或不生成类时,您都不需要更改POM。
答案 1 :(得分:2)
我会采用另一种方法。
1st)配置你的xjc插件不要删除任何文件,例如:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<clearOutputDir>false</clearOutputDir>
<outputDirectory>${project.build.directory}</outputDirectory>
<sources>
<source> [any xsd] </source>
</sources>
</configuration>
2nd)使用maven-clean-plugin在干净的阶段清理jxc类生成的dir:
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/generated/src/main/java/...where the generated classes are</directory>
<includes>
<include>**/*.java</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
这对我有用,我希望有用。