maven包括从另一个模块到rpm的组装

时间:2012-04-23 18:03:49

标签: maven

我有一个多模块maven项目,以及构建标准jar文件的许多代码模块,我有一个模块使用maven-assembly-plugin构建测试工具作为zip文件,另一个模块构建应用rpm使用rpm-maven-plugin。我想在rpm中包含测试工具zip文件。

目前我在rpm模块中执行以下操作:

<dependencies>
    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>appn</artifactId>
        <version>${project.version}</version>
    </dependency>
    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>test-harness</artifactId>
        <version>${project.version}</version>
    </dependency>
</dependencies>

<build>
    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>rpm-maven-plugin</artifactId>
    <configuration>
    :
    <mapping>
        <directory>/opt/app/installed/${rpmSoftwareName}-${project.version}/utils</directory>
        <username>${rpmUsername}</username>
        <groupname>${rpmGroupname}</groupname>
        <filemode>0755</filemode>
        <sources>
            <source>
                <location>${project.build.directory}/../../test-harness/target/test-harness-${project.version}-dist.zip</location>
            </source>
        </sources>
    </mapping>
    <mapping>
        <directory>/opt/app/installed/${rpmSoftwareName}-${project.version}/lib</directory>
        <username>${rpmUsername}</username>
        <groupname>${rpmGroupname}</groupname>
        <filemode>0755</filemode>
        <dependency />
    </mapping>

我遇到的问题是rpm的lib目录包含test-harness及其传递依赖项。如果我从lib映射中排除测试工具,我没有得到测试工具,但我确实得到了它的传递依赖。如果我删除测试工具作为依赖项,那么我必须依赖父pom中的模块顺序来确保首先构建测试工具,这似乎有点弱,因为依赖于包含测试工具的相对路径在映射......必须有更好的方法。

1 个答案:

答案 0 :(得分:2)

最好的事情是首先不使用访问其他模块的相对路径(../target /等)。更好地使用rpm模块中的依赖项。例如,将zip文件定义为具有适当分类器的依赖项。

<dependencies>
  <dependency>
     <groupId>project.com.domain</groupId>
     <artifactId>test-harness</artifactId>
     <version>${project.version}</version>
     <classifier>dist</classifier>
     <type>zip</type>
  </dependency>
</dependencies>

之后,您应该简单地将依赖项添加到rpm配置中,如下所示:

<mapping>
  <directory>/usr/local/lib</directory>
  <filemode>750</filemode>
  <username>dumper</username>
  <groupname>dumpgroup</groupname>
  <dependency>
    <includes>
      <include>...:test-harness:dist:zip:${project.version}</include>
      <include>...</include>
    </includes>
    <excludes>
      <exclude>...</exclude>
    </excludes>
  </dependency>
</mapping>

我不是100%确定包含的确切顺序(artifactId:classifier:type:version?)。