From: <sta...@us...> - 2007-03-19 19:11:48
|
Revision: 1591 http://archive-access.svn.sourceforge.net/archive-access/?rev=1591&view=rev Author: stack-sf Date: 2007-03-19 12:11:31 -0700 (Mon, 19 Mar 2007) Log Message: ----------- A nutchwax-core A nutchwax-core/pom.xml Added new module to build nutchwax jar. Added Paths: ----------- trunk/archive-access/projects/nutchwax/nutchwax-core/ trunk/archive-access/projects/nutchwax/nutchwax-core/pom.xml Added: trunk/archive-access/projects/nutchwax/nutchwax-core/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/nutchwax-core/pom.xml (rev 0) +++ trunk/archive-access/projects/nutchwax/nutchwax-core/pom.xml 2007-03-19 19:11:31 UTC (rev 1591) @@ -0,0 +1,57 @@ +<?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-core</artifactId> + <packaging>jar</packaging> + <name>NutchWAX Core Jar</name> + <build> + <sourceDirectory>../src/java</sourceDirectory> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <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--> + <echo>Compiling third.party dependencies as part of generate-sources</echo> + <ant dir=".." target="third.party.jar"/> + </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. |