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/01/12 20:03:06 UTC

svn commit: r611462 - /myfaces/core/trunk/api/pom.xml

Author: skitching
Date: Sat Jan 12 11:03:05 2008
New Revision: 611462

URL: http://svn.apache.org/viewvc?rev=611462&view=rev
Log:
* generate -sources jar by default. This takes almost no time, and it's nicer. It's also consistent with core12.
* add missing dependency version info
* remove unused dependency declarations

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

Modified: myfaces/core/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/pom.xml?rev=611462&r1=611461&r2=611462&view=diff
==============================================================================
--- myfaces/core/trunk/api/pom.xml (original)
+++ myfaces/core/trunk/api/pom.xml Sat Jan 12 11:03:05 2008
@@ -9,13 +9,31 @@
   <artifactId>myfaces-api</artifactId>
   <name>Apache MyFaces JSF-1.1 API</name>
   <description>
-    The public API classes of the Apache MyFaces Core JSF-1.1 API project.
+    The public API classes of the Apache MyFaces Core JSF-1.1 project.
   </description>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/core/trunk/api</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/core/trunk/api</developerConnection>
     <url>http://svn.apache.org/viewcvs.cgi/myfaces/core/trunk/api</url>
   </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <version>2.0.4</version>
+        <executions>
+          <execution>
+            <id>attach-source</id>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <profiles>
     <profile>
       <id>generate-assembly</id>
@@ -29,6 +47,7 @@
         <plugins>
           <plugin>
             <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.3</version>
             <executions>
               <execution>
                 <id>attach-javadoc</id>
@@ -38,17 +57,6 @@
               </execution>
             </executions>
           </plugin>
-          <plugin>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-source</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
         </plugins>
       </build>
     </profile>
@@ -106,12 +114,6 @@
   </profiles>
   <dependencies>
     <dependency>
-      <groupId>commons-lang</groupId>
-      <artifactId>commons-lang</artifactId>
-      <version>2.1</version>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
       <groupId>easymock</groupId>
       <artifactId>easymockclassextension</artifactId>
       <version>1.1</version>
@@ -130,12 +132,6 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
-      <groupId>commons-beanutils</groupId>
-      <artifactId>commons-beanutils</artifactId>
-      <version>1.7.0</version>
-      <scope>compile</scope>
-    </dependency>
-    <dependency>
       <groupId>org.apache.struts.shale</groupId>
       <artifactId>shale-test</artifactId>
       <version>1.0.2</version>
@@ -164,18 +160,6 @@
       <artifactId>easymock</artifactId>
       <version>1.1</version>
       <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>commons-digester</groupId>
-      <artifactId>commons-digester</artifactId>
-      <version>1.8</version>
-      <scope>compile</scope>
-      <exclusions>
-        <exclusion>
-          <artifactId>xml-apis</artifactId>
-          <groupId>xml-apis</groupId>
-        </exclusion>
-      </exclusions>
     </dependency>
     <dependency>
       <groupId>aspectj</groupId>