个人资料是:我使用 ${artifactId} 作为个人资料 ID。
<profiles>
<profile>
<id>${artifactId}</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptors>
<descriptor>distribution.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
在 shell 中运行 maven:
mvn -U -Dmaven.test.skip=true -f pom.xml -Pabc_test clean install
然后我发现一个错误:
[警告] 请求的配置文件“abc_test”无法激活,因为它不存在。结束