From: <bo...@us...> - 2007-04-03 03:48:40
|
Revision: 168 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=168&view=rev Author: bodewig Date: 2007-04-02 20:48:34 -0700 (Mon, 02 Apr 2007) Log Message: ----------- Provide a Maven 2 POM and an Ivy File Modified Paths: -------------- trunk/xmlunit/LICENSE.txt trunk/xmlunit/build.xml Added Paths: ----------- trunk/xmlunit/src/etc/xmlunit-ivy.xml trunk/xmlunit/src/etc/xmlunit.pom Modified: trunk/xmlunit/LICENSE.txt =================================================================== --- trunk/xmlunit/LICENSE.txt 2007-04-01 09:52:52 UTC (rev 167) +++ trunk/xmlunit/LICENSE.txt 2007-04-03 03:48:34 UTC (rev 168) @@ -1,6 +1,6 @@ /* ****************************************************************** -Copyright (c) 2001, Jeff Martin, Tim Bacon +Copyright (c) 2001-2007, Jeff Martin, Tim Bacon All rights reserved. Redistribution and use in source and binary forms, with or without Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2007-04-01 09:52:52 UTC (rev 167) +++ trunk/xmlunit/build.xml 2007-04-03 03:48:34 UTC (rev 168) @@ -93,6 +93,9 @@ <target name="setDistVersion" depends="init"> <replace dir="${src.dir}" token="@@version@@" value="${xmlunit.version}" includes="**/*.java"/> + <tstamp> + <format property="ivy.publication.datetime" pattern="yyyyMMddHHmmss"/> + </tstamp> </target> <target name="docs" depends="init"> @@ -121,6 +124,24 @@ basedir="${out.dir}" excludes="**/test_*.class" /> + + <copy todir="${lib.dir}"> + <fileset dir="src/etc"> + <include name="xmlunit.pom"/> + <include name="xmlunit-ivy.xml"/> + </fileset> + <mapper type="glob" from="xmlunit*" to="xmlunit-${xmlunit.version}*"/> + <filterset> + <filter token="VERSION" value="${xmlunit.version}"/> + <filter token="DATE" value="${ivy.publication.datetime}"/> + <filter token="DESCRIPTION" value="XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions."/> + <filter token="LICENSE" value="BSD License"/> + <filter token="LICENSE_URL" value="http://xmlunit.svn.sourceforge.net/viewvc/*checkout*/xmlunit/trunk/xmlunit/LICENSE.txt"/> + <filter token="GROUP" value="xmlunit"/> + <filter token="ARTIFACT" value="xmlunit"/> + <filter token="TYPE" value="jar"/> + </filterset> + </copy> </target> <target name="dist" depends="jar,test,docs"> Added: trunk/xmlunit/src/etc/xmlunit-ivy.xml =================================================================== --- trunk/xmlunit/src/etc/xmlunit-ivy.xml (rev 0) +++ trunk/xmlunit/src/etc/xmlunit-ivy.xml 2007-04-03 03:48:34 UTC (rev 168) @@ -0,0 +1,13 @@ +<ivy-module version="1.3"> + <info organization="@GROUP@" + module="@ARTIFACT@" + revision="@VERSION@" + publication="@DATE@"> + <license name="@LICENSE@" + url="@LICENSE_URL@"/> + <description>@DESCRIPTION@</description> + </info> + <publications> + <artifact name="@ARTIFACT@" type="@TYPE@"/> + </publications> +</ivy-module> Property changes on: trunk/xmlunit/src/etc/xmlunit-ivy.xml ___________________________________________________________________ Name: svn:eol-style + native Added: trunk/xmlunit/src/etc/xmlunit.pom =================================================================== --- trunk/xmlunit/src/etc/xmlunit.pom (rev 0) +++ trunk/xmlunit/src/etc/xmlunit.pom 2007-04-03 03:48:34 UTC (rev 168) @@ -0,0 +1,16 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>@GROUP@</groupId> + <artifactId>@ARTIFACT@</artifactId> + <packaging>@TYPE@</packaging> + <version>@VERSION@</version> + <description>@DESCRIPTION@</description> + <url>http://xmlunit.sourceforge.net/</url> + <licenses> + <license> + <name>@LICENSE@</name> + <url>@LICENSE_URL@</url> + </license> + </licenses> + <dependencies/> +</project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |