You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2006/01/02 08:58:48 UTC

svn commit: r365309 - /myfaces/tomahawk/trunk/pom.xml

Author: baranda
Date: Sun Jan  1 23:58:45 2006
New Revision: 365309

URL: http://svn.apache.org/viewcvs?rev=365309&view=rev
Log:
Fixed duplicated dependency in poms (commons-httpclient) and fixed eol-style properties

Modified:
    myfaces/tomahawk/trunk/pom.xml   (contents, props changed)

Modified: myfaces/tomahawk/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/pom.xml?rev=365309&r1=365308&r2=365309&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/pom.xml (original)
+++ myfaces/tomahawk/trunk/pom.xml Sun Jan  1 23:58:45 2006
@@ -1,229 +1,222 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>org.apache.myfaces</groupId>
-  <artifactId>tomahawk</artifactId>
-  <packaging>jar</packaging>
-  <version>1.1.2-SNAPSHOT</version>
-  <name>Tomahawk</name>
-  <url>http://myfaces.apache.org</url>
-  <description>
-  	This is the Tomahawk Subproject Description [INSERT MORE STUFF HERE]
-  </description>
-
-  <parent>
-    <groupId>org.apache.myfaces</groupId>
-    <artifactId>myfaces</artifactId>
-    <version>1.1.2-SNAPSHOT</version>
-  </parent>
-
-  <dependencies>
-
-    <dependency>
-      <groupId>org.apache.myfaces</groupId>
-      <artifactId>myfaces-api</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
-			<scope>compile</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>org.apache.myfaces</groupId>
-      <artifactId>myfaces-commons</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
-			<scope>compile</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.apache.myfaces</groupId>
-      <artifactId>myfaces-impl</artifactId>
-      <version>1.1.2-SNAPSHOT</version>
-			<scope>compile</scope>
-    </dependency>
-        
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>jsp-api</artifactId>
-      <version>2.0</version>
-      <scope>provided</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-      <version>2.3</version>
-      <scope>provided</scope>
-    </dependency>    
-
-    <dependency>
-			<groupId>commons-validator</groupId>
-			<artifactId>commons-validator</artifactId>
-			<version>1.2.0</version>
-      <scope>compile</scope>
-    </dependency>       
-
-    <dependency>
-			<groupId>struts</groupId>
-			<artifactId>struts</artifactId>
-			<version>1.2.8</version>
-    	<scope>compile</scope>
-    </dependency>   
-    
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>cactus</groupId>
-      <artifactId>cactus</artifactId>
-      <version>13-1.7.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>aspectj</groupId>
-      <artifactId>aspectjrt</artifactId>
-      <version>1.2.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <version>2.0.2</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <version>2.0.2</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>httpunit</groupId>
-      <artifactId>httpunit</artifactId>
-      <version>1.6</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-      <groupId>nekohtml</groupId>
-      <artifactId>nekohtml</artifactId>
-      <version>0.9.1</version>
-      <scope>test</scope>
-    </dependency>
-    
-    <dependency>
-		<groupId>easymock</groupId>
-		<artifactId>easymock</artifactId>
-		<version>1.1</version>
-	  <scope>test</scope>
-	</dependency>
-
-    <dependency>
-		<groupId>easymock</groupId>
-		<artifactId>easymockclassextension</artifactId>
-		<version>1.1</version>
-	  <scope>test</scope>			
-	</dependency>       
-
-  </dependencies>
-
-	<build>
-		<plugins>
-		  <plugin>
-		    <groupId>org.codehaus.mojo</groupId>
-		    <artifactId>xslt-maven-plugin</artifactId>
-		    <version>1.0-SNAPSHOT</version>
-		    <configuration>
-		    	<xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
-          <srcIncludes>**/*.tld</srcIncludes>
-		      <srcDir>src/main/tld</srcDir>
-		      <destDir>src/main/resources-tld/META-INF</destDir>
-		    </configuration>
-		    <executions>
-		      <execution>
-		        <goals><goal>transform</goal></goals>
-		      </execution>
-		    </executions>
-		  </plugin>
-		</plugins>
-  </build>
-  
-  <reporting>
-	  <plugins>
-	    <plugin>
-	      <inherited>false</inherited>
-	      <groupId>org.apache.maven.plugins</groupId>
-	      <artifactId>maven-project-info-reports-plugin</artifactId>
-	      <reportSets>
-					<reportSet>
-					  <reports>
-	                       <report>project-team</report>					  
-						   <report>dependencies</report>
-						   <report>mailing-list</report>
-                           <report>issue-tracking</report>
-                           <report>license</report>
-                           <report>scm</report>
-					  </reports>
-					</reportSet>
-	      </reportSets>
-	    </plugin>
-      <plugin>
-		<groupId>org.apache.maven.plugins</groupId>
-		<artifactId>maven-javadoc-plugin</artifactId>
-		<version>2.0-beta-3</version>
-      </plugin>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>jxr-maven-plugin</artifactId>
-      </plugin>      
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>taglist-maven-plugin</artifactId>
-        <version>2.0-beta-1</version>
-        <configuration>
-          <tags>TODO, FIXME, XXX, @deprecated</tags>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>surefire-report-maven-plugin</artifactId>
-      </plugin>
-      
-      <plugin>
-      <groupId>org.codehaus.mojo</groupId>
-      <artifactId>changelog-maven-plugin</artifactId>
-      <version>2.0-beta-1</version>
-      <reportSets>
-        <reportSet>
-          <id>dual-report</id>
-          <configuration>
-            <type>range</type>
-            <range>30</range>
-          </configuration>
-          <reports>
-            <report>changelog</report>
-            <report>file-activity</report>
-            <report>dev-activity</report>
-          </reports>
-        </reportSet>
-      </reportSets>
-    </plugin>
-            	    
-	  </plugins>
-  </reporting>
-  
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk</url>
-  </scm>
-  
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.myfaces</groupId>
+  <artifactId>tomahawk</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1.2-SNAPSHOT</version>
+  <name>Tomahawk</name>
+  <url>http://myfaces.apache.org</url>
+  <description>
+  	This is the Tomahawk Subproject Description [INSERT MORE STUFF HERE]
+  </description>
+
+  <parent>
+    <groupId>org.apache.myfaces</groupId>
+    <artifactId>myfaces</artifactId>
+    <version>1.1.2-SNAPSHOT</version>
+  </parent>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>org.apache.myfaces</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <version>1.1.2-SNAPSHOT</version>
+			<scope>compile</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.myfaces</groupId>
+      <artifactId>myfaces-commons</artifactId>
+      <version>1.1.2-SNAPSHOT</version>
+			<scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces</groupId>
+      <artifactId>myfaces-impl</artifactId>
+      <version>1.1.2-SNAPSHOT</version>
+			<scope>compile</scope>
+    </dependency>
+        
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>jsp-api</artifactId>
+      <version>2.0</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.3</version>
+      <scope>provided</scope>
+    </dependency>    
+
+    <dependency>
+			<groupId>commons-validator</groupId>
+			<artifactId>commons-validator</artifactId>
+			<version>1.2.0</version>
+      <scope>compile</scope>
+    </dependency>       
+
+    <dependency>
+			<groupId>struts</groupId>
+			<artifactId>struts</artifactId>
+			<version>1.2.8</version>
+    	<scope>compile</scope>
+    </dependency>   
+    
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>cactus</groupId>
+      <artifactId>cactus</artifactId>
+      <version>13-1.7.1</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+      <version>1.2.1</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>commons-httpclient</groupId>
+      <artifactId>commons-httpclient</artifactId>
+      <version>2.0.2</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>httpunit</groupId>
+      <artifactId>httpunit</artifactId>
+      <version>1.6</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>nekohtml</groupId>
+      <artifactId>nekohtml</artifactId>
+      <version>0.9.1</version>
+      <scope>test</scope>
+    </dependency>
+    
+    <dependency>
+		<groupId>easymock</groupId>
+		<artifactId>easymock</artifactId>
+		<version>1.1</version>
+	  <scope>test</scope>
+	</dependency>
+
+    <dependency>
+		<groupId>easymock</groupId>
+		<artifactId>easymockclassextension</artifactId>
+		<version>1.1</version>
+	  <scope>test</scope>			
+	</dependency>       
+
+  </dependencies>
+
+	<build>
+		<plugins>
+		  <plugin>
+		    <groupId>org.codehaus.mojo</groupId>
+		    <artifactId>xslt-maven-plugin</artifactId>
+		    <version>1.0-SNAPSHOT</version>
+		    <configuration>
+		    	<xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
+          <srcIncludes>**/*.tld</srcIncludes>
+		      <srcDir>src/main/tld</srcDir>
+		      <destDir>src/main/resources-tld/META-INF</destDir>
+		    </configuration>
+		    <executions>
+		      <execution>
+		        <goals><goal>transform</goal></goals>
+		      </execution>
+		    </executions>
+		  </plugin>
+		</plugins>
+  </build>
+  
+  <reporting>
+	  <plugins>
+	    <plugin>
+	      <inherited>false</inherited>
+	      <groupId>org.apache.maven.plugins</groupId>
+	      <artifactId>maven-project-info-reports-plugin</artifactId>
+	      <reportSets>
+					<reportSet>
+					  <reports>
+	                       <report>project-team</report>					  
+						   <report>dependencies</report>
+						   <report>mailing-list</report>
+                           <report>issue-tracking</report>
+                           <report>license</report>
+                           <report>scm</report>
+					  </reports>
+					</reportSet>
+	      </reportSets>
+	    </plugin>
+      <plugin>
+		<groupId>org.apache.maven.plugins</groupId>
+		<artifactId>maven-javadoc-plugin</artifactId>
+		<version>2.0-beta-3</version>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+      </plugin>      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.0-beta-1</version>
+        <configuration>
+          <tags>TODO, FIXME, XXX, @deprecated</tags>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>surefire-report-maven-plugin</artifactId>
+      </plugin>
+      
+      <plugin>
+      <groupId>org.codehaus.mojo</groupId>
+      <artifactId>changelog-maven-plugin</artifactId>
+      <version>2.0-beta-1</version>
+      <reportSets>
+        <reportSet>
+          <id>dual-report</id>
+          <configuration>
+            <type>range</type>
+            <range>30</range>
+          </configuration>
+          <reports>
+            <report>changelog</report>
+            <report>file-activity</report>
+            <report>dev-activity</report>
+          </reports>
+        </reportSet>
+      </reportSets>
+    </plugin>
+            	    
+	  </plugins>
+  </reporting>
+  
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tomahawk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tomahawk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/tomahawk</url>
+  </scm>
+  
 </project>

Propchange: myfaces/tomahawk/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native