mirror of https://github.com/apache/openjpa.git
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:
parent
fff0cd889a
commit
82c4e26932
|
@ -19,11 +19,17 @@
|
||||||
<formats>
|
<formats>
|
||||||
<format>zip</format>
|
<format>zip</format>
|
||||||
</formats>
|
</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>
|
<fileSets>
|
||||||
<fileSet>
|
<fileSet>
|
||||||
<directory>..</directory>
|
<directory>..</directory>
|
||||||
<outputDirectory></outputDirectory>
|
<outputDirectory>${artifactId}-${version}-source</outputDirectory>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>**/target/**</exclude>
|
<exclude>**/target/**</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
|
@ -38,6 +44,7 @@
|
||||||
http://www.apache.org/legal/src-headers.html#notice
|
http://www.apache.org/legal/src-headers.html#notice
|
||||||
-->
|
-->
|
||||||
<fileSet>
|
<fileSet>
|
||||||
|
<outputDirectory>${artifactId}-${version}-source</outputDirectory>
|
||||||
<includes>
|
<includes>
|
||||||
<include>README</include>
|
<include>README</include>
|
||||||
<include>DISCLAIMER</include>
|
<include>DISCLAIMER</include>
|
||||||
|
|
Loading…
Reference in New Issue