From: <sta...@us...> - 2007-02-27 01:57:12
|
Revision: 1516 http://archive-access.svn.sourceforge.net/archive-access/?rev=1516&view=rev Author: stack-sf Date: 2007-02-26 17:57:11 -0800 (Mon, 26 Feb 2007) Log Message: ----------- * src/site/site.xml Added m2 site.xml. Needs work. * pom.xml Upped m2 requirement. Point at IA repository. * build.xml Added a build nutch plugins target. Made jar and war depend on it. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/build.xml trunk/archive-access/projects/nutchwax/pom.xml Added Paths: ----------- trunk/archive-access/projects/nutchwax/src/site/ trunk/archive-access/projects/nutchwax/src/site/site.xml Modified: trunk/archive-access/projects/nutchwax/build.xml =================================================================== --- trunk/archive-access/projects/nutchwax/build.xml 2007-02-27 00:03:41 UTC (rev 1515) +++ trunk/archive-access/projects/nutchwax/build.xml 2007-02-27 01:57:11 UTC (rev 1516) @@ -57,13 +57,21 @@ <path refid="classpath"/> </path> - <target name="third.party.jar" description="Build third-party jars"> + <target name="third.party.plugins" description="Build third-party plugins"> + <echo message="Building nutch third-party dependency (plugins)" /> + <ant dir="third-party/nutch" target="compile-plugins" inheritAll="false" > + <property name="build.compiler" value="extJavac" /> + </ant> + </target> + <target name="third.party.jar" description="Build third-party jars" + depends="third.party.plugins"> <echo message="Building nutch third-party dependency (jar)" /> <ant dir="third-party/nutch" target="jar" inheritAll="false" > <property name="build.compiler" value="extJavac" /> </ant> </target> - <target name="third.party.war" description="Build third-party wars"> + <target name="third.party.war" description="Build third-party wars" + depends="third.party.plugins"> <echo message="Building nutch third-party dependency (war)" /> <ant dir="third-party/nutch" target="war" inheritAll="false" > <property name="build.compiler" value="extJavac" /> @@ -90,6 +98,7 @@ <!-- ====================================================== --> <target name="compile" depends="init" description="Compile nutchwax classes"> + <property name="build.compiler" value="extJavac" /> <javac encoding="${build.encoding}" srcdir="${src.dir}" Modified: trunk/archive-access/projects/nutchwax/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/pom.xml 2007-02-27 00:03:41 UTC (rev 1515) +++ trunk/archive-access/projects/nutchwax/pom.xml 2007-02-27 01:57:11 UTC (rev 1516) @@ -87,6 +87,7 @@ </archive> </mailingList> </mailingLists> + <scm> <connection>scm:svn:https://archive-access.svn.sourceforge.net/svnroot/archive-access/projects/nutchwax</connection> <tag>HEAD</tag> @@ -94,11 +95,12 @@ </scm> <prerequisites> - <maven>2.0.4</maven> + <maven>2.0.5</maven> </prerequisites> <dependencies> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> @@ -112,14 +114,18 @@ <version>1.11.0-SNAPSHOT</version> </dependency> - </dependencies> <build> <plugins> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <configuration> + <xdocDirectory>${basedir}/xdocs</xdocDirectory> + </configuration> + </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> - <configuration> <filters> <filter>src/main/filters/filter.properties</filter> @@ -129,7 +135,6 @@ <descriptor>src/main/assembly/src-distribution.xml</descriptor> </descriptors> </configuration> - </plugin> <plugin> @@ -181,4 +186,23 @@ </plugins> </build> + <repositories> + <repository> + <releases> + <enabled>true</enabled> + <updatePolicy>always</updatePolicy> + <checksumPolicy>warn</checksumPolicy> + </releases> + <snapshots> + <enabled>true</enabled> + <updatePolicy>never</updatePolicy> + <checksumPolicy>fail</checksumPolicy> + </snapshots> + <id>internetarchive</id> + <name>Internet Archive Maven Repository</name> + <url>http://builds.archive.org:8080/maven2</url> + <layout>default</layout> + </repository> + </repositories> + </project> Added: trunk/archive-access/projects/nutchwax/src/site/site.xml =================================================================== --- trunk/archive-access/projects/nutchwax/src/site/site.xml (rev 0) +++ trunk/archive-access/projects/nutchwax/src/site/site.xml 2007-02-27 01:57:11 UTC (rev 1516) @@ -0,0 +1,38 @@ +<project name="nutchwax"> + +<bannerLeft> + <name>NutchWAXXXXX</name> + <href>http://maven.apache.org/</href> + <src>http://maven.apache.org/images/apache-maven archive_logo.png</src> +</bannerLeft> + +<bannerRight> + <name>NutchWAXProficio</name> + <src>http://maven.apache.org/images/apache-maven project.png</src> +</bannerRight> + +<skin> + <groupId>org.archive</groupId> + <artifactId>maven-skin</artifactId> + <version>1.0-SNAPSHOT</version> +</skin> + +<publishDate format="dd MMM yyyy" /> +<body> + <links> + <item name="Apache" href="http://www.apache.org/"/> + <item name="Maven" href="http://maven.apache.org/"/> + <item name="Continuum" href="http://maven.apache.org/continuum"/> + </links> + <head> + <meta name="faq" content="proficio"/> + </head> + <menu name="Quick Links"> + <item name="Features" href="/maven-features.html"/> + </menu> + <menu name="About Proficio"> + <item name="What is Proficio?" href="/what-is-maven.html"/> + </menu> + ${reports} +</body> +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |