3

重复但没有答案,无法评论

背景信息:我有一个模块,它使用 xmlbeans-maven-plugin 从 xsd 生成 java 源文件并编译到它自己的 jar 中。这有效,并且还使用 java 源创建了一个 module1/target/generated-sources 文件夹。该模块已构建,但生成的源代码在 jar 中,这是不必要的,因为 xmlbeans 插件创建了一个单独的 jar,其中包含编译生成的源代码

我试图排除目标/生成源目录被打包到模块的 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>


****更新******

我设法排除了生成的源,但它很丑陋且不可移植:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.4</version>
    <configuration>
        <includes>
            <include>com/**</include>
        </includes>

    </configuration>
 </plugin>

这将仅包括 target/classes/com 下编译后的内容以及当 maven 将模块打包到不干净的 jar 中时。理想情况下,排除应该发生在编译器中,这样目标/生成源的内容就不会被编译到目标/类/

4

1 回答 1

0

与您在更新中使用包含的方式类似,有一个 excludes 元素可以满足您的需求。您只需指出要排除而不是包含的包。

http://maven.apache.org/plugins/maven-jar-plugin/examples/include-exclude.html

于 2014-10-02T14:15:23.227 回答