官方文档
http://maven.apache.org/plugins/maven-assembly-plugin/index.html
此插件使用pom.xml写入
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
博客提及Maven Assembly插件的官方文档地址为http://maven.apache.org/plugins/maven-assembly-plugin/index.html ,并指出该插件使用pom.xml写入。

8万+

被折叠的 条评论
为什么被折叠?



