我需要组装几套资源。这些资源集是相互关联的。因此,我决定将它们全部放在同一个项目下,并使用程序集插件来实现我的目标。
我以每组资源的 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)?在这种情况下,我所有的三个描述符都只替换为一个文件。
先感谢您。