2

我需要组装几套资源。这些资源集是相互关联的。因此,我决定将它们全部放在同一个项目下,并使用程序集插件来实现我的目标。

我以每组资源的 POM 和描述符文件结束。

假设我的项目如下:

  • src/main/resources/set1 :包含第一组的资源
  • src/main/resources/set2 :包含第二组的资源
  • src/main/resources/set3 :包含第三组的资源
  • descriptor1.xml :第一组的程序集描述符
  • descriptor2.xml :第二组的程序集描述符
  • descriptor3.xml : thord set 的程序集描述符
  • pom.xml

descriptor1.xml的内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<assembly
    xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
      http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
      http://maven.apache.org/xsd/assembly-1.1.2.xsd">

    <id>set1</id>
    <formats>
        <format>tar.gz</format>
    </formats>
    <fileSets>
        <fileSet>
            <outputDirectory>/</outputDirectory>
            <directory>${project.basedir}/src/main/resources/set1</directory>
        </fileSet>
    </fileSets>
</assembly>

descriptor2.xml 和descriptor3.xml 的内容与descriptor1.xml 的内容类似,只是set1(在“/assembly/id”和“/assembly/fieldSets/fieldSet/directory”中)分别被set2 和set3 替换。

pom.xml的内容如下:

<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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>sample</groupId>
    <artifactId>sample.assembler</artifactId>
    <version>0.0.1</version>
    <packaging>pom</packaging>

    <properties>
        <maven-assembly-plugin.version>2.4</maven-assembly-plugin.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>${maven-assembly-plugin.version}</version>
                <executions>
                    <execution>
                        <id>set1</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <descriptors>
                                <descriptor>descriptor1.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                    <execution>
                        <id>set2</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <descriptors>
                                <descriptor>descriptor2.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                    <execution>
                        <id>set3</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <descriptors>
                                <descriptor>descriptor3.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

上面的配置给出了预期的结果。但是,有很多描述符文件需要维护。

我在文档中读到描述符文件在使用之前使用项目属性、POM 元素值、用户属性等进行插值。

我的问题是:有没有办法引用当前执行的 id(比如 project.build.execution.id)?在这种情况下,我所有的三个描述符都只替换为一个文件。

先感谢您。

4

1 回答 1

1

我不认为你可以在单次运行中实现你想要的。

但是您可以创建一个配置文件,其中每个配置文件将定义不同的属性,并且您可以使用不同的配置文件运行构建三次以获得 3 个不同的文件集。

我确实使用这种方法为不同的环境生成配置。我激活环境配置文件,输出是环境配置。配置由配置文件属性驱动的单个描述符生成。

编辑:

这是使用每次执行属性的解决方法,可以解决您的问题。目前我不完全确定这些过滤器是否仅用于过滤资源,或者您可以在程序集本身中引用它们来定义让我们说<finalName>......

见: http: //olafsblog.sysbsb.de/per-assembly-filtering-with-the-maven-assembly-plugin/

于 2013-09-27T20:06:41.607 回答