Dear Wiki user, You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.
The "NutchMavenSupport" page has been changed by LewisJohnMcgibbney: https://wiki.apache.org/nutch/NutchMavenSupport?action=diff&rev1=2&rev2=3 - Starting with Nutch 1.3 and with Nutch 2.0, you can now use Nutch as a [[http://maven.apache.org/|Maven]] dependency. Just include the below block of code in your Maven pom.xml. + As well as being released in Binary and Source (the latter only for the 2.x series), all releases of Nutch are now packaged as [[http://maven.apache.org/|Maven]] dependencies. + + Just include the below block of code in your Maven pom.xml. In addition to this, please see [[https://repository.apache.org/index.html#nexus-search;classname~Nutch|here]] for ALL Nutch artifacts on the Sonatype Nexus Maven Repository. @@ -8, +10 @@ <dependency> <groupId>org.apache.nutch</groupId> <artifactId>nutch</artifactId> - <version>1.3</version> + <version>${nutch.version}</version> <exclusions> <exclusion> <groupId>com.sun.jdmk</groupId> @@ -27, +29 @@ This generates a top-level pom.xml, with the necessary deps. Also, it currently pushes the Nutch staging artifacts to Apache's Nexus repository, which upon successful VOTE'ing, is then pushed to Maven Central. + '''N.B''' Replace ${nutch.version} above with the version of Nutch you wish to use. +