提交 637bebd9 编写于 作者: K kohsuke

added assembly descriptor to create the source bundle


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@1281 71c3de6d-444a-0410-be80-ed276b4c234a
上级 ef2c53d4
<!--
assembly descriptor to create the source distribution.
-->
<assembly>
<id>src</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/target</exclude>
<exclude>**/target/**/*</exclude>
<exclude>**/work</exclude>
<exclude>**/work/**/*</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>
......@@ -33,8 +33,23 @@
<configuration>
<!-- enable release profile during the release -->
<prepareVerifyArgs>-P release</prepareVerifyArgs>
<!--
also run assembly during the release.
http://www.nabble.com/Release-Plugin%3A-Include-assemblies-for-deploying-tf2642295s177.html#a7377938
-->
<goals>install assembly:attached deploy</goals>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<finalName>hudson-${version}</finalName>
<descriptors>
<descriptor>assembly-src.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</project>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册