You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2009/10/19 18:52:40 UTC

svn commit: r826723 - in /myfaces/trinidad-maven/trunk: maven-faces-plugin/pom.xml pom.xml

Author: matzew
Date: Mon Oct 19 16:52:40 2009
New Revision: 826723

URL: http://svn.apache.org/viewvc?rev=826723&view=rev
Log:
making all plugins modules building by Java 5

Modified:
    myfaces/trinidad-maven/trunk/maven-faces-plugin/pom.xml
    myfaces/trinidad-maven/trunk/pom.xml

Modified: myfaces/trinidad-maven/trunk/maven-faces-plugin/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad-maven/trunk/maven-faces-plugin/pom.xml?rev=826723&r1=826722&r2=826723&view=diff
==============================================================================
--- myfaces/trinidad-maven/trunk/maven-faces-plugin/pom.xml (original)
+++ myfaces/trinidad-maven/trunk/maven-faces-plugin/pom.xml Mon Oct 19 16:52:40 2009
@@ -31,20 +31,6 @@
   <packaging>maven-plugin</packaging>
   <name>Apache Trinidad Maven Faces Plugin</name>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <inherited>true</inherited>
-        <configuration>
-          <source>1.4</source>
-          <target>1.4</target>
-        </configuration>
-      </plugin>
-    </plugins>      
-  </build>
-
   <reporting>
     <plugins>
       <plugin>

Modified: myfaces/trinidad-maven/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad-maven/trunk/pom.xml?rev=826723&r1=826722&r2=826723&view=diff
==============================================================================
--- myfaces/trinidad-maven/trunk/pom.xml (original)
+++ myfaces/trinidad-maven/trunk/pom.xml Mon Oct 19 16:52:40 2009
@@ -85,6 +85,15 @@
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <inherited>true</inherited>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>
         <configuration>
           <preparationGoals>clean verify install</preparationGoals>