You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2015/09/05 23:29:53 UTC

svn commit: r1701424 - in /maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version: plugin/pom.xml pluginManagement/pom.xml property/pom.xml

Author: hboutemy
Date: Sat Sep  5 21:29:53 2015
New Revision: 1701424

URL: http://svn.apache.org/r1701424
Log:
avoid Maven 3.3.x regression on properties interpolation (will open a MNG issue...)

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/plugin/pom.xml
    maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/pluginManagement/pom.xml
    maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/property/pom.xml

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/plugin/pom.xml?rev=1701424&r1=1701423&r2=1701424&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/plugin/pom.xml Sat Sep  5 21:29:53 2015
@@ -29,7 +29,7 @@ under the License.
     <version>1.0-SNAPSHOT</version>
   </parent>
   <artifactId>plugin</artifactId>
-  <name>target bytecode defined by plugin configuration</name>
+  <name>target bytecode defined by plugin configuration: 1.5 expected</name>
 
   <properties><!-- will be overridden -->
     <maven.compiler.source>1.3</maven.compiler.source>

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/pluginManagement/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/pluginManagement/pom.xml?rev=1701424&r1=1701423&r2=1701424&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/pluginManagement/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/pluginManagement/pom.xml Sat Sep  5 21:29:53 2015
@@ -29,7 +29,7 @@ under the License.
     <version>1.0-SNAPSHOT</version>
   </parent>
   <artifactId>pluginManagement</artifactId>
-  <name>target bytecode defined by pluginManagement configuration</name>
+  <name>target bytecode defined by pluginManagement configuration: 1.4 expected</name>
 
   <properties><!-- will be overridden -->
     <maven.compiler.source>1.3</maven.compiler.source>

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/property/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/property/pom.xml?rev=1701424&r1=1701423&r2=1701424&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/property/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/it/java-version/property/pom.xml Sat Sep  5 21:29:53 2015
@@ -29,10 +29,12 @@ under the License.
     <version>1.0-SNAPSHOT</version>
   </parent>
   <artifactId>property</artifactId>
-  <name>target bytecode defined by maven.compiler.target property</name>
+  <name>target bytecode defined by maven.compiler.target property: 1.3 expected</name>
 
   <properties>
     <maven.compiler.source>1.3</maven.compiler.source>
-    <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
+    <maven.compiler.target>1.3</maven.compiler.target>
+    <!--maven.compiler.target>${maven.compiler.source}</maven.compiler.target-->
+    <!-- with Maven 3.3.x, this ${maven.compiler.source} property is interpolated to 1.5 instead of 1.3...-->
   </properties>
 </project>