PR: MPARTIFACT-72

Creating an upload-bundle for a plugin without any java code does not work.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@447951 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-09-19 20:29:43 +00:00
parent 79fbf98f14
commit c5ea0241f7
2 changed files with 5 additions and 1 deletions

View File

@ -222,7 +222,10 @@
<!-- Add javadocs -->
<attainGoal name="javadoc:jar"/>
<util:file var="_javadocjar" name="${maven.build.dir}/${maven.final.name}_javadoc.jar"/>
<j:if test="${_javadocjar.exists()}">
<ant:copy file="${maven.build.dir}/${maven.final.name}_javadoc.jar" tofile="${maven.build.dir}/bundle/${maven.final.name}-javadoc.jar"/>
</j:if>
<ant:jar
jarfile="${maven.build.dir}/${maven.final.name}-bundle.jar"

View File

@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.8.1-SNAPSHOT" date="In SVN">
<action dev="ltheussl" type="fix" issue="MPARTIFACT-72">Creating an upload-bundle for a plugin without any java code does not work.</action>
<action dev="aheritier" type="update">Use a custom build of velocity (1.5-20060721.044818) to wait for a release of velocity 1.5 which will fix the issue VELOCITY-193 (The horrible error : "log4j:ERROR Attempted to append to closed appender named [null]").</action>
<action dev="ltheussl" type="update">Update jelly dependency to match the ones in maven 1.1 core.</action>
<action dev="ltheussl" type="update" issue="MPARTIFACT-67">Include javadocs in created upload bundle.</action>