MPEJB-23: Java sources are not compiled when used with maven-test-plugin-1.8 and maven.test.skip=true.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@440930 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
shinobu
2006-09-07 01:33:12 +00:00
parent 26401b1296
commit 3a4e9a2664
2 changed files with 10 additions and 1 deletions

View File

@@ -46,7 +46,15 @@
<j:choose>
<j:when test="${sourcesPresent == 'true'}">
<attainGoal name="test:test"/>
<j:choose>
<j:when test="${unitTestSourcesPresent == 'true' and context.getVariable('maven.test.skip') != 'true'}">
<attainGoal name="test:test"/>
</j:when>
<j:otherwise>
<attainGoal name="java:compile"/>
<attainGoal name="java:jar-resources"/>
</j:otherwise>
</j:choose>
</j:when>
<j:otherwise>
<!-- Make sure we always copy the resources whether there are sources or

View File

@@ -27,6 +27,7 @@
<release version="1.7.3-SNAPSHOT" date="In SVN">
</release>
<release version="1.7.2" date="2006-03-05">
<action dev="shinobu" type="fix" issue="MPEJB-23">Java sources are not compiled when used with maven-test-plugin-1.8 and maven.test.skip=true.</action>
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
<ul>
<li>commons-logging v1.0.3 -&gt; v1.0.4</li>