Duplicate但没有答案,也无法评论
背景信息:我有一个模块,它使用xmlbeans-maven-plugin从xsd生成java源文件并编译成自己的jar。这可以工作,还可以使用java源创建module1 / target / generated-sources文件夹。该模块是构建的,但是jar中包含生成的源代码,这是不必要的,因为xmlbeans插件创建了一个单独的jar,其中包含编译生成的源代码
我试图将目标/ generated-sources目录排除在打包到模块的jar工件中。我尝试在maven-compiler-plugin和maven-jar-plugin中使用target / generated-sources / xmlbeans / noNamespace / ** / * .java但没有成功
我在这里缺少什么?
这是模块的pom.xml,如果需要父pom,我也会发布:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>parent</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>workflow</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>WorkFlow processing App</name>
<build>
<finalName>workflow</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<schemaDirectory>src/main/xsd</schemaDirectory>
<outputJar>${build.dir}/lib/WorkflowResponse.jar</outputJar>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
<configuration>
<source>${compiler.source.version}</source>
<target>${compiler.target.version}</target>
<generatedSourcesDirectory>target</generatedSourcesDirectory>
<!--<includes>-->
<!--<include>src/main/java/**/*.java</include>-->
<!--</includes>-->
<excludes>
<exclude>target/generated-sources/xmlbeans/noNamespace/**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-jar-plugin</artifactId>-->
<!--<version>2.4</version>-->
<!--<configuration>-->
<!--<includes>-->
<!--<include>src/main/java/com/company/appname/*.java</include>-->
<!--</includes>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</build>
**** ****** UPDATE
我已设法排除生成的来源,但它很丑陋而且不便携:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<includes>
<include>com/**</include>
</includes>
</configuration>
</plugin>
在编译完成后以及当maven将模块打包到一个不干净的jar中时,这将只包含target / classes / com下的内容。理想情况下,排除应该在编译器中发生,这样target / generated-sources的内容就不会编译成target / classes /
答案 0 :(得分:0)
与您在更新中使用包含的方式类似,有一个排除元素可以执行您想要的操作。您只需指明要排除的包而不是包含。
http://maven.apache.org/plugins/maven-jar-plugin/examples/include-exclude.html