You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/02/01 22:07:12 UTC

svn commit: r617646 - /myfaces/orchestra/trunk/core/pom.xml

Author: skitching
Date: Fri Feb  1 13:07:11 2008
New Revision: 617646

URL: http://svn.apache.org/viewvc?rev=617646&view=rev
Log:
Fix bad maven-taglib-plugin version number, that made -Pgenerate-site fail.
Also use parent definition for compiler, rather than local one.

Modified:
    myfaces/orchestra/trunk/core/pom.xml

Modified: myfaces/orchestra/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/pom.xml?rev=617646&r1=617645&r2=617646&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/pom.xml (original)
+++ myfaces/orchestra/trunk/core/pom.xml Fri Feb  1 13:07:11 2008
@@ -98,15 +98,6 @@
 
     <plugins>
       <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.0.2</version>
-        <configuration>
-          <source>1.4</source>
-          <target>${build.target}</target>
-        </configuration>
-      </plugin>
-
-      <plugin>
         <artifactId>maven-dependency-plugin</artifactId>
         <version>2.0</version>
         <executions>
@@ -319,7 +310,7 @@
           <plugin>
             <groupId>net.sourceforge.maven-taglib</groupId>
             <artifactId>maven-taglib-plugin</artifactId>
-            <version>1.4.2</version>
+            <version>2.3.1</version>
             <configuration>
               <taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
               <tldDocDir>${basedir}/target/site/tlddoc</tldDocDir>
@@ -378,6 +369,7 @@
           <plugin>
             <groupId>net.sourceforge.maven-taglib</groupId>
             <artifactId>maven-taglib-plugin</artifactId>
+            <version>2.3.1</version>
             <configuration>
               <taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
               <tldDocDir>${basedir}/target/tlddoc</tldDocDir>
@@ -397,7 +389,8 @@
   </profiles>
 
   <properties>
-    <build.target>1.4</build.target>
+    <maven.compile.source>1.4</maven.compile.source>
+    <maven.compile.target>1.4</maven.compile.target>
   </properties>
 
 </project>