From: <sta...@us...> - 2007-02-27 20:01:30
|
Revision: 1523 http://archive-access.svn.sourceforge.net/archive-access/?rev=1523&view=rev Author: stack-sf Date: 2007-02-27 12:01:25 -0800 (Tue, 27 Feb 2007) Log Message: ----------- More m2 migration work. * src/site/site.xml Use default skin rather than custom archive one (Lets wait till we want to spend time on styling before we bring in our own skin). Move stuff around in menus so closer to current layout. * pom.xml Add dependencies needed by just-added javadoc report. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/pom.xml trunk/archive-access/projects/nutchwax/src/site/site.xml Modified: trunk/archive-access/projects/nutchwax/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/pom.xml 2007-02-27 19:03:59 UTC (rev 1522) +++ trunk/archive-access/projects/nutchwax/pom.xml 2007-02-27 20:01:25 UTC (rev 1523) @@ -114,6 +114,44 @@ <version>1.11.0-SNAPSHOT</version> </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.0.4</version> + </dependency> + + <dependency> + <groupId>org.apache</groupId> + <artifactId>hadoop</artifactId> + <version>0.10.1-core</version> + </dependency> + + <dependency> + <groupId>org.apache</groupId> + <artifactId>nutch</artifactId> + <version>0.9-dev-508238</version> + </dependency> + + <dependency> + <groupId>servletapi</groupId> + <artifactId>servletapi</artifactId> + <version>2.4</version> + </dependency> + + <dependency> + <groupId>org.archive</groupId> + <artifactId>archive-commons</artifactId> + <!--SNAPSHOT means use latest. + When archive-commons is deployed to the local repository, use: + $ JAVA_HOME=/usr/lib/j2sdk1.5-sun/ bash /0/builds/bin/maven-2.0.5/bin/mvn deploy:deploy-file \ + -Dfile=/tmp/archive-commons-1.11.0-SNAPSHOT.jar -Durl=file:/0/maven2-repository/ \ + -DgroupId=org.archive -DartifactId=archive-commons -Dpackaging=jar -Dversion=1.11.0-SNAPSHOT + --> + <version>1.11.0-SNAPSHOT</version> + </dependency> + + + </dependencies> <build> <plugins> @@ -189,6 +227,15 @@ </build> <reporting> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <javadocDirectory> + ${basedir}/src/java + </javadocDirectory> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> Modified: trunk/archive-access/projects/nutchwax/src/site/site.xml =================================================================== --- trunk/archive-access/projects/nutchwax/src/site/site.xml 2007-02-27 19:03:59 UTC (rev 1522) +++ trunk/archive-access/projects/nutchwax/src/site/site.xml 2007-02-27 20:01:25 UTC (rev 1523) @@ -1,10 +1,9 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <project name="nutchwax"> +<!--Have nothing showing on LHS--> <bannerLeft> - <name>Internet Archive</name> - <src>images/ia_logo.gif</src> - <href>http://www.archive.org/</href> + <name /> </bannerLeft> <bannerRight> @@ -13,12 +12,6 @@ <href >http://archive-access.sf.net/projects/nutchwax/</href> </bannerRight> -<skin> - <groupId>org.archive</groupId> - <artifactId>maven-skin</artifactId> - <version>1.0-SNAPSHOT</version> -</skin> - <publishDate format="dd MMM yyyy" /> <body> @@ -26,20 +19,26 @@ <links> <item name="Sourceforge" href="http://archive-access.sf.net"/> <item name="Heritrix" href="http://crawler.archive.org"/> + <item name="Home" href="index.html"/> </links> <menu name="NutchWAX"> - <item name="Downloads" href="downloads.html"/> + <item name="Home" href="index.html"/> + <item name="Downloads" href="downloads.html" /> <item name="Getting Started" href="apidocs/overview-summary.html#toc"/> - <item name="User Query-time Help" href="help-queries.html"/> - <item name="FAQ" href="faq.html"/> <item name="Building from Source" href="apidocs/overview-summary.html#src"/> + <item name="User Query-time Help" href="help-queries.html"/> <item name="Regression Test Suite" href="regress.html"/> - <item name="Praxis" href="practices.html"/> <item name="Wayback-NutchWAX" href="wayback.html"/> + <item name="Praxis" href="practices.html"/> + <item name="FAQ" href="faq.html"/> </menu> - ${reports} + <!--Its not possible to change the labels used in reports, not yet anyways. + Current ones don't jibe well. Reports are headed 'Project Documentation' + but its only a subset of all documentation. + --> + ${reports} </body> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |