From: <sta...@us...> - 2007-03-16 00:18:48
|
Revision: 1584 http://archive-access.svn.sourceforge.net/archive-access/?rev=1584&view=rev Author: stack-sf Date: 2007-03-15 17:18:49 -0700 (Thu, 15 Mar 2007) Log Message: ----------- M nutchwax/pom.xml Add a repository to deploy to. M nutchwax/build.xml Add a version string. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/build.xml trunk/archive-access/projects/nutchwax/pom.xml Modified: trunk/archive-access/projects/nutchwax/build.xml =================================================================== --- trunk/archive-access/projects/nutchwax/build.xml 2007-03-15 19:10:17 UTC (rev 1583) +++ trunk/archive-access/projects/nutchwax/build.xml 2007-03-16 00:18:49 UTC (rev 1584) @@ -7,6 +7,8 @@ <!--'nutch.root' is pointer at core nutch. Expect to find it in '${basedir}/third-party' named 'nutch'. --> + <!--Keep this aligned with whats in maven2 pom--> + <property name="nutchwax.version" value="-0.11.0-SNAPSHOT"/> <property name="nutch.root" location="${root}/third-party/nutch"/> <property file="${user.home}/.$(name}.build.properties" /> @@ -133,7 +135,7 @@ <!-- ================================================================== --> <target name="jar" depends="compile, compile-plugins" description="Builds nutchwax jobs jar of all tasks to do import, etc." > - <zip destfile="${build.dir}/${name}.jar"> + <zip destfile="${build.dir}/${name}${nutchwax.version}.jar"> <zipfileset prefix="META-INF" file="${conf.dir}/MANIFEST.MF"/> <zipfileset file="${conf.dir}/log4j.properties"/> <zipfileset file="${conf.dir}/wax-parse-plugins.xml"/> @@ -255,7 +257,7 @@ <!--Copy our nutchwax nutch-site.xml template into the build dir as nutch-site.xml. Then in the below, add it into the WEB-INF/classes dir. --> - <war destfile="${build.dir}/${name}.war" webxml="${this.web}/web.xml"> + <war destfile="${build.dir}/${name}${nutchwax.version}.war" webxml="${this.web}/web.xml"> <fileset dir="${nutch.web}/jsp"> <exclude name="**/search.jsp"/> <exclude name="**/web.xml"/> Modified: trunk/archive-access/projects/nutchwax/pom.xml =================================================================== --- trunk/archive-access/projects/nutchwax/pom.xml 2007-03-15 19:10:17 UTC (rev 1583) +++ trunk/archive-access/projects/nutchwax/pom.xml 2007-03-16 00:18:49 UTC (rev 1584) @@ -383,6 +383,12 @@ </pluginRepositories> <distributionManagement> + <repository> + <id>repository</id> + <name>Repository</name> + <!--Pass as command-line system property to maven--> + <url>${repository.url}</url> + </repository> <site> <id>website</id> <name>Website</name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |