Added maven.dist.bin.artifact property

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@116010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
carlos
2004-08-27 11:15:05 +00:00
parent 05bdde589a
commit adab566b80
4 changed files with 9 additions and 2 deletions

4
dist/plugin.jelly vendored
View File

@@ -79,10 +79,10 @@
</ant:fileset>
</ant:copy>
<!-- Copy Jars -->
<!-- Copy artifact -->
<ant:copy todir="${maven.dist.bin.assembly.dir}">
<ant:fileset dir="${maven.build.dir}">
<ant:include name="${maven.final.name}.jar"/>
<ant:include name="${maven.dist.bin.artifact}"/>
</ant:fileset>
</ant:copy>

View File

@@ -28,3 +28,4 @@ maven.dist.src.assembly.dir=${maven.dist.assembly.dir}/src/${maven.final.name}
maven.dist.dir=${maven.build.dir}/distributions
maven.dist.tar.executable=tar
maven.dist.gunzip.executable=gunzip
maven.dist.bin.artifact=${maven.final.name}.jar

View File

@@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.7-SNAPSHOT" date="in CVS">
<action dev="carlos" type="add" issue="MPDIST-13">Added <code>maven.dist.bin.artifact</code> property.</action>
<action dev="carlos" type="update">Don't generate ant build file, call maven-ant-plugin before or set a preGoal</action>
<action dev="carlos" type="update">Add NOTICE file to distribution</action>
</release>

View File

@@ -67,6 +67,11 @@
<td>yes - default is <code>gunzip</code>, found via the path.</td>
<td>The path to the gunzip executable on the remote server</td>
</tr>
<tr>
<td>maven.dist.bin.artifact</td>
<td>yes - default is <code>${maven.final.name}.jar</code>.</td>
<td>The name of the binary artifact to include in distribution, relative to target dir.</td>
</tr>
</table>
</section>
</body>