From: <sta...@us...> - 2007-03-20 00:51:03
|
Revision: 1594 http://archive-access.svn.sourceforge.net/archive-access/?rev=1594&view=rev Author: stack-sf Date: 2007-03-19 17:38:08 -0700 (Mon, 19 Mar 2007) Log Message: ----------- A nutchwax-thirdparty A nutchwax-thirdparty/pom.xml Added. Added Paths: ----------- trunk/archive-access/projects/nutchwax/nutchwax-thirdparty/ trunk/archive-access/projects/nutchwax/nutchwax-thirdparty/pom.xml Added: trunk/archive-access/projects/nutchwax/nutchwax-thirdparty/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/nutchwax-thirdparty/pom.xml (rev 0) +++ trunk/archive-access/projects/nutchwax/nutchwax-thirdparty/pom.xml 2007-03-20 00:38:08 UTC (rev 1594) @@ -0,0 +1,58 @@ +<?xml version="1.0"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<parent> + <groupId>org.archive</groupId> + <artifactId>nutchwax</artifactId> + <version>0.11.0-SNAPSHOT</version> +</parent> + <modelVersion>4.0.0</modelVersion> + <groupId>org.archive.nutchwax</groupId> + <artifactId>nutchwax-thirdparty</artifactId> + <!--This project just compiles third-party code. + The produced jar has nothing in it but is useful + as a product subsequent modules can check for + to ensure third-party build has preceeded their + build. + --> + <packaging>jar</packaging> + <name>NutchWAX Third-party Dependencies</name> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>antrun.generate.sources</id> + <phase>generate-sources</phase> + <configuration> + <tasks> + <!-- Make these conditional so do not run everytime + Done as part of the generate-sources step so that + we can invoke it from eclipse. + --> + <echo>Compiling third.party dependencies as part of generate-sources</echo> + <ant dir=".." target="third.party.jar"/> + <ant dir=".." target="third.party.plugins"/> + </tasks> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + <execution> + <id>antrun.clean</id> + <phase>clean</phase> + <configuration> + <tasks> + <ant dir=".." target="clean-all"/> + </tasks> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |