Maven,汇编插件,多模块项目和模块依赖

时间:2010-06-29 08:26:15

标签: maven-2 maven-assembly-plugin

我正在构建一个多模块Maven项目,其主要产品是WAR文件,我正在尝试将该文件与相关的与发布相关的工件(README,发行说明,许可证文件等)组合到一起用于分发的ZIP。但是当我尝试构建分发文件时,它失败了。我究竟做错了什么?请注意,我已经检查过在foo-bar.1.0.war模块被要求构建分发文件时存在foo-distribution工件;我知道将所有内容都放在foo的POM中是行不通的。 (我有一个解决方法;我可以使用相对路径直接指向相对于foo-distribution模块根目录分发的文件的位置。这不是我喜欢的解决方案,因为它有错误的代码味道。)< / p>

另请注意,我始终从根项目构建,并且我在分发构建器中使用assembly:single(如Maven文档中所建议的那样)。

项目布局

foo
+ src
| + README.txt
+ foo-bar
| + target
|   + foo-bar.1.0.war
+ foo-distribution
  + src
    + assemble
      + dist.xml

foofoo-distribution打包pomfoo-bar打包war。 (实际代码中还有其他模块,但它们也在foo-distribution模块之前正确构建。)

foo POM

<project xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>foobar</groupId>
    <artifactId>foo</artifactId>
    <packaging>pom</packaging>
    <version>0.0.1-SNAPSHOT</version>

    <modules>
        <module>foo-bar</module>
        <module>foo-distribution</module>
    </modules>
</project>

foo-distribution POM

<project xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <version>0.0.1-SNAPSHOT</version>
    <parent>
        <artifactId>foo</artifactId>
        <groupId>foobar</groupId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>..</relativePath>
    </parent>
    <groupId>foobar</groupId>
    <artifactId>foo-distribution</artifactId>
    <packaging>pom</packaging>

    <dependencies>
        <dependency>
            <groupId>foobar</groupId>
            <artifactId>foo-bar</artifactId>
            <version>1.0</version>
            <type>war</type>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2-beta-5</version>
                <configuration>
                    <finalName>foobar</finalName>
                    <descriptors>
                        <descriptor>src/assemble/dist.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-t2server-distribution</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

dist.xml

<assembly
    xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0">
    <id>distribution</id>
    <formats>
        <format>zip</format>
    </formats>
    <moduleSets>
        <moduleSet>
            <includes>
                <include>foobar:foo</include>
            </includes>
            <sources>
                <fileSets>
                    <fileSet>
                        <directory>src</directory>
                        <includes>
                            <include>*.txt</include>
                        </includes>
                    </fileSet>
                </fileSets>
            </sources>
        </moduleSet>
        <moduleSet>
            <includes>
                <include>foobar:foo-bar</include>
            </includes>
            <binaries />
        </moduleSet>
    </moduleSets>
</assembly>

解决方法dist.xml

这是我上面提到的解决方法。它产生了我想要的神器。

<assembly
    xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0">
    <id>distribution</id>
    <formats>
        <format>zip</format>
    </formats>
    <fileSets>
        <fileSet>
            <directory>${project.basedir}/../src</directory>
            <includes>
                <include>*.txt</include>
            </includes>
        </fileSet>
        <fileSet>
            <directory>${project.basedir}/../foo-bar/target</directory>
            <includes>
                <include>*.war</include>
            </includes>
            <outputDirectory>.</outputDirectory>
        </fileSet>
    </fileSets>
</assembly>

2 个答案:

答案 0 :(得分:0)

您应该在程序集描述符中使用dependencySet

<assembly>
  <id>dist</id>
  <formats>
      <format>zip</format>
  </formats>
  <includeBaseDirectory>true</includeBaseDirectory>
  <dependencySets>
      <dependencySet>
          <useTransitiveDependencies>false</useTransitiveDependencies>
          <useProjectArtifact>false</useProjectArtifact>
          <unpack>false</unpack>
          <scope>runtime</scope>
          <fileMode>0644</fileMode>
      </dependencySet>
  </dependencySets>
  <fileSets>
      <fileSet>
        with all supplemental files you need
      </fileSet>
  </fileSets>

而不是通过文件系统(相对路径)引用文件。而另一方面,源程序的描述符确实存在于程序集插件中(请查看文档)。

答案 1 :(得分:0)

正在构建模块的顺序是什么,我遇到了类似的问题,并且声明了父模块在子模块中的帮助构建顺序。不确定使用是否有助于此。