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=18&rev2=19 * A plugin.xml file that tells Nutch about your plugin. * A build.xml file that tells ant how to build your plugin. - * The source code of your plugin in the directory structure recommended/src/java/org/apache/nutch/parse/recommended/[Source_Here]. + * A ivy.xml file containing either the description of the dependencies of a module, its published artifacts and its configurations or else the location of another file which does specify this information. + * A /src directory containing the source code of our plugin with the directory structure shown in the hierarchical view below. + {{{ + plugin.xml + build.xml + ivy.xml + src + java + org + apache + nutch + indexer + urlmeta <<< Source Folder + package.html + URLMetaIndexingFilter.java + scoring + urlmeta <<< Source Folder + package.html + URLMetaScoringFilter.java + }}} == Plugin.xml == Your plugin.xml file should look like this:

