PR: MPWAR-62

Submitted by: Nicolas de Loof
Thanks to: Shinobu Kawai
Another patch that fixes missing resources.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@432314 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl
2006-08-17 18:15:49 +00:00
parent ee6ceb3851
commit 8d660a2ace
2 changed files with 9 additions and 3 deletions

View File

@@ -182,8 +182,9 @@
<!-- If maven.test.skip != true, java:compile is attained in test:test -->
<maven:get var="testsSkipped" plugin="maven-test-plugin" property="maven.test.skip"/>
<j:if test="${testsSkipped}">
<attainGoal name="java:compile"/>
<j:if test="${unitTestSourcesPresent != 'true' or testsSkipped == 'true'}">
<attainGoal name="java:compile"/>
<attainGoal name="java:jar-resources"/>
</j:if>
<ant:echo>Assembling webapp ${pom.artifactId}</ant:echo>

View File

@@ -24,7 +24,12 @@
</properties>
<body>
<release version="1.6.3-SNAPSHOT" date="in SVN">
<action dev="ltheussl" type="fix" issue="MPWAR-62">Java sources are not compiled when used with maven-test-plugin-1.8 and maven.test.skip=true.</action>
<action dev="ltheussl" type="fix">
<description>Java sources are not compiled when used with maven-test-plugin-1.8 and maven.test.skip=true.</description>
<fixes issue="MPWAR-62"/>
<dueto name="Nicolas de Loof"/>
<dueto name="Shinobu Kawai"/>
</action>
</release>
<release version="1.6.2" date="2006-06-18">
<action dev="snicoll" type="fix" issue="MPWAR-58">Manifest file is now generated properly.</action>