Made the source assembly unpack into a different folder than the binary assembly (for example, the binary assembly might unpack to "openjpa-project-0.9.7-incubating-SNAPSHOT", and the source assembly will unpack to "openjpa-project-0.9.7-incubating-SNAPSHOT-source").

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@475995 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Marc Prud'hommeaux 2006-11-17 00:13:19 +00:00
parent fff0cd889a
commit 82c4e26932
1 changed files with 9 additions and 2 deletions

View File

@ -19,11 +19,17 @@
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<!--
rather than including the base directory (which would cause this
archive to unpack into the same directory as the binary
distribution), we specify the directory into which to put
sources below, in the <outputDirectory> tags
-->
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>..</directory>
<outputDirectory></outputDirectory>
<outputDirectory>${artifactId}-${version}-source</outputDirectory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
@ -38,6 +44,7 @@
http://www.apache.org/legal/src-headers.html#notice
-->
<fileSet>
<outputDirectory>${artifactId}-${version}-source</outputDirectory>
<includes>
<include>README</include>
<include>DISCLAIMER</include>