You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by te...@apache.org on 2013/05/09 09:45:10 UTC

svn commit: r1480550 - in /nutch/branches/2.x: CHANGES.txt default.properties pom.xml

Author: tejasp
Date: Thu May  9 07:45:09 2013
New Revision: 1480550

URL: http://svn.apache.org/r1480550
Log:
Added crawler-commons dependency in pom.xml

Modified:
    nutch/branches/2.x/CHANGES.txt
    nutch/branches/2.x/default.properties
    nutch/branches/2.x/pom.xml

Modified: nutch/branches/2.x/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1480550&r1=1480549&r2=1480550&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Thu May  9 07:45:09 2013
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Release 2.2 - Current Development
 
+* Added crawler-commons dependency in pom.xml (tejasp)
+
 * NUTCH-956 solrindex issues: add field tld to Solr schema (Alexis via lewismc, snagel)
 
 * NUTCH-1277 Fix [fallthrough] javac warnings (tejasp)
@@ -46,11 +48,11 @@ Release 2.2 - Current Development
 
 * NUTCH-XX remove unused db.max.inlinks property in nutch-default.xml (lewismc)
 
-* NUTCH-1284 Add site fetcher.max.crawl.delay as log output by default (Tejas Patil)
+* NUTCH-1284 Add site fetcher.max.crawl.delay as log output by default (tejasp)
 
 * NUTCH-1453 Substantiate tests for IndexingFilters (lufeng via lewismc)
 
-* NUTCH-1274 Fix [cast] javac warnings (Tejas Patil via lewismc)
+* NUTCH-1274 Fix [cast] javac warnings (tejasp via lewismc)
 
 * NUTCH-1516 Nutch 2.x pom.xml out of sync with ivy.xml (lewismc)
 

Modified: nutch/branches/2.x/default.properties
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/default.properties?rev=1480550&r1=1480549&r2=1480550&view=diff
==============================================================================
--- nutch/branches/2.x/default.properties (original)
+++ nutch/branches/2.x/default.properties Thu May  9 07:45:09 2013
@@ -17,7 +17,7 @@
 name=apache-nutch
 version=2.2-SNAPSHOT
 final.name=${name}-${version}
-year=2012
+year=2013
 
 basedir = ./
 src.dir = ./src/java

Modified: nutch/branches/2.x/pom.xml
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/pom.xml?rev=1480550&r1=1480549&r2=1480550&view=diff
==============================================================================
--- nutch/branches/2.x/pom.xml (original)
+++ nutch/branches/2.x/pom.xml Thu May  9 07:45:09 2013
@@ -82,6 +82,21 @@
 			<name>Lewis John McGibbney</name>
 			<email>lewismc@apache.org</email>
 		</developer>
+                <developer>
+                        <id>tejasp</id>
+                        <name>Tejas Patil</name>
+                        <email>tejasp@apache.org</email>
+                </developer>
+                <developer>
+                        <id>kiranch</id>
+                        <name>Kiran Chitturi</name>
+                        <email>kiranch@apache.org</email>
+                </developer>
+                <developer>
+                        <id>fenglu</id>
+                        <name>Feng</name>
+                        <email>fenglu@apache.org</email>
+                </developer>
 	</developers>
         <build>
           <sourceDirectory>src/java</sourceDirectory>
@@ -247,12 +262,6 @@
                         <optional>true</optional>
                 </dependency>
                 <dependency>
-                        <groupId>org.jdom</groupId>
-                        <artifactId>jdom</artifactId>
-                        <version>1.1</version>
-                        <optional>true</optional>
-                </dependency>
-                <dependency>
                         <groupId>org.apache.gora</groupId>
                         <artifactId>gora-sql</artifactId>
                         <version>0.1.1-incubating</version>
@@ -270,6 +279,12 @@
                         <version>2.0.5</version>
                         <optional>true</optional>
                 </dependency>
+                <dependency>
+                        <groupId>com.google.code.crawler-commons</groupId>
+                        <artifactId>crawler-commons</artifactId>
+                        <version>0.2</version>
+                        <scope>compile</scope>
+                </dependency>
         </dependencies>
 </project>