PR: MPWAR-1

copy resources even if no sources present by running test:test


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115011 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2004-04-14 00:57:17 +00:00
parent 2f6d9b0431
commit 0c6166e9f3
3 changed files with 5 additions and 11 deletions

View File

@@ -39,9 +39,7 @@
<ant:available property="webSourcesPresent" type="dir"
file="${maven.war.src}"/>
<j:if test="${sourcesPresent == 'true'}">
<attainGoal name="test:test"/>
</j:if>
<attainGoal name="test:test"/>
<ant:property name="maven.war.final.name"
value="${pom.artifactId}.war"/>

View File

@@ -35,11 +35,6 @@
<url>http://cvs.apache.org/viewcvs/maven-plugins/war/</url>
</repository>
<versions>
<version>
<id>1.5</id>
<name>1.5</name>
<tag>HEAD</tag>
</version>
<version>
<id>1.5</id>
<name>1.5</name>
@@ -69,7 +64,7 @@
</developer>
<developer>
<name>Brett Porter</name>
<id>bporter</id>
<id>brett</id>
<email>brett@apache.org</email>
<organization>f2 network</organization>
<roles>

View File

@@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.6" date="in CVS">
<action dev="brett" type="fix" issue="MPWAR-1">Call test:test regardless of whether sources are present as it contains build logic</action>
<action dev="dion" type="fix" issue="MPWAR-24">Remove extra call to java:compile</action>
<action dev="dion" type="update" issue="MPWAR-21">Allow automated generation of manifest Class-Path</action>
<action dev="dion" type="update" issue="MPWAR-22">Allow customizing of MANIFEST.MF</action>
@@ -35,8 +36,8 @@
<action dev="vmassol" type="add">Use the new
<code>caller</code>plugin to isolate the java compilation goal called from its implementation.
</action>
<action dev="bporter" type="add">Add war:inplace goal for building the webapp into maven.war.src. You should cvsignore WEB-INF/lib and WEB-INF/classes</action>
<action dev="bporter" type="add">Add target path to dependencies so you can copy to elsewhere than WEB-INF/lib. Useful for applets.</action>
<action dev="brett" type="add">Add war:inplace goal for building the webapp into maven.war.src. You should cvsignore WEB-INF/lib and WEB-INF/classes</action>
<action dev="brett" type="add">Add target path to dependencies so you can copy to elsewhere than WEB-INF/lib. Useful for applets.</action>
</release>
<release version="1.4" date="2003-09-29">
<action dev="dion" type="update">Apply MAVEN-831. Copy web.xml as specified by ${maven.war.webxml}</action>