Dear Wiki user, You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.
The "WritingPluginExample" page has been changed by LewisJohnMcgibbney: http://wiki.apache.org/nutch/WritingPluginExample?action=diff&rev1=21&rev2=22 URLMetaScoringFilter.java }}} - == Plugin.xml == + == plugin.xml == Your plugin.xml file should look like this: {{{ @@ -93, +93 @@ </plugin> }}} - == Build.xml == + == build.xml == In its simplest form: {{{ @@ -104, +104 @@ <import file="../build-plugin.xml"/> </project> + }}} + + == ivy.xml == + This file is used to describe the dependencies of the plugin on other libraries. + {{{ + <ivy-module version="1.0"> + <info organisation="org.apache.nutch" module="${ant.project.name}"> + <license name="Apache 2.0"/> + <ivyauthor name="Apache Nutch Team" url="http://nutch.apache.org"/> + <description> + Apache Nutch + </description> + </info> + + <configurations> + <include file="${nutch.root}/ivy/ivy-configurations.xml"/> + </configurations> + + <publications> + <!--get the artifact from our module name--> + <artifact conf="master"/> + </publications> + + <dependencies> + </dependencies> + + </ivy-module> }}} == The Indexer Extension ==

