Author: oheger
Date: Fri Aug 19 19:45:08 2011
New Revision: 1159758
URL: http://svn.apache.org/viewvc?rev=1159758&view=rev
Log:
Generated new ant build file with the maven-ant-plugin.
Added:
commons/proper/configuration/trunk/maven-build.properties (with props)
commons/proper/configuration/trunk/maven-build.xml (with props)
Modified:
commons/proper/configuration/trunk/build.xml
commons/proper/configuration/trunk/src/site/xdoc/building.xml
Modified: commons/proper/configuration/trunk/build.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/build.xml?rev=1159758&r1=1159757&r2=1159758&view=diff
==============================================================================
--- commons/proper/configuration/trunk/build.xml (original)
+++ commons/proper/configuration/trunk/build.xml Fri Aug 19 19:45:08 2011
@@ -15,278 +15,28 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
+<!-- ===================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
+<!-- Note: This build file has been generated using the maven ant plugin -->
+<!-- (http://maven.apache.org/plugins/maven-ant-plugin/) and then slightly -->
+<!-- adapted. -->
+<!-- $Id$ -->
+<!-- ===================================================================== -->
+
+<project name="commons-configuration" default="package" basedir=".">
+
+ <!-- ======================================================================
-->
+ <!-- Import maven-build.xml into the current project
-->
+ <!-- ======================================================================
-->
-<!--build.xml generated by maven from project.xml version 1.1-dev
- on date January 29 2005, time 1728-->
-
-<project default="jar" name="commons-configuration" basedir=".">
-
- <!-- Manual changes for dealing with the conf directory and jdbc dependency
-->
- <property file="build.properties"/>
- <property file="default.properties"/>
- <property name="confdir" value="conf"/>
- <!-- Manual changes end -->
-
- <property name="defaulttargetdir" value="${build.home}">
- </property>
- <property name="libdir" value="${build.home}/lib">
- </property>
- <property name="classesdir" value="${build.home}/classes">
- </property>
- <property name="metadir" value="${classesdir}/META-INF"/>
- <property name="testclassesdir" value="${build.home}/test-classes">
- </property>
- <property name="testclassesdir" value="${build.home}/test-classes">
- </property>
- <property name="testreportdir" value="${build.home}/test-reports">
- </property>
- <property name="distdir" value="dist">
- </property>
- <property name="javadocdir" value="dist/docs/api">
- </property>
- <property name="targetconfdir" value="${testclassesdir}"/>
- <property name="repository" value="http://repo1.maven.org/maven2"/>
-
- <path id="build.classpath">
- <fileset dir="${libdir}">
- <include name="**/*.jar">
- </include>
- </fileset>
- </path>
-
- <target name="init" description="o Initializes some properties">
- <filter token="name" value="${component.name}"/>
- <filter token="package" value="${component.package}"/>
- <filter token="version" value="${component.version}"/>
- <mkdir dir="${libdir}">
- </mkdir>
- <condition property="noget">
- <equals arg2="only" arg1="${build.sysclasspath}">
- </equals>
- </condition>
- <!--Test if JUNIT is present in ANT classpath-->
-
- <available property="Junit.present" classname="junit.framework.Test">
- </available>
- </target>
+ <import file="maven-build.xml"/>
- <!-- Copies the jdbc-stdext jar in the lib directory if the dependency is
defined -->
- <target name="copy-jdbc-dep" if="dependency.jdbc">
- <copy todir="${libdir}" file="${dependency.jdbc}"/>
- </target>
-
- <target name="compile" description="o Compile the code"
- depends="get-deps, copy-jdbc-dep">
- <mkdir dir="${classesdir}">
- </mkdir>
- <javac destdir="${classesdir}" deprecation="${compile.deprecation}"
- debug="${compile.debug}" optimize="${compile.optimize}"
excludes="**/package.html">
- <src>
- <pathelement location="${source.home}">
- </pathelement>
- </src>
- <classpath refid="build.classpath">
- </classpath>
- </javac>
- <copy todir="${classesdir}">
- <fileset dir="${confdir}">
- <include name="digesterRules.xml">
- </include>
- <include name="properties.dtd">
- </include>
- <include name="PropertyList-1.0.dtd">
- </include>
- </fileset>
- </copy>
- </target>
+ <!-- ======================================================================
-->
+ <!-- Help target
-->
+ <!-- ======================================================================
-->
- <target name="jar" description="o Create the jar" depends="compile,test">
- <mkdir dir="${classesdir}/META-INF"/>
- <copy file="LICENSE.txt" todir="${metadir}"/>
- <copy file="NOTICE.txt" todir="${metadir}"/>
- <copy file="${conf.home}/manifest.mf" todir="${defaulttargetdir}"
filtering="on"/>
- <jar jarfile="${defaulttargetdir}/${final.name}.jar"
basedir="${classesdir}"
- manifest="${defaulttargetdir}/manifest.mf" excludes="**/package.html">
- </jar>
+ <target name="help">
+ <echo message="Please run: $ant -projecthelp"/>
</target>
- <target name="clean" description="o Clean up the generated directories">
- <delete dir="${defaulttargetdir}">
- </delete>
- <delete dir="${distdir}">
- </delete>
- </target>
- <target name="dist" description="o Create a distribution" depends="jar,
javadoc">
- <mkdir dir="dist">
- </mkdir>
- <copy todir="dist">
- <fileset dir="${defaulttargetdir}" includes="*.jar">
- </fileset>
- <fileset dir="${basedir}" includes="LICENSE*, README*">
- </fileset>
- </copy>
- </target>
- <target name="test" description="o Run the test cases" if="test.failure"
depends="internal-test">
- <fail message="There were test failures.">
- </fail>
- </target>
- <target name="internal-test" if="Junit.present"
depends="junit-present,compile-tests">
- <mkdir dir="${testreportdir}">
- </mkdir>
- <junit dir="./" failureproperty="test.failure" printSummary="yes"
fork="${junit.fork}"
- haltonerror="${test.failonerror}">
- <sysproperty key="basedir" value=".">
- </sysproperty>
- <formatter type="xml">
- </formatter>
- <formatter usefile="false" type="plain">
- </formatter>
- <classpath>
- <path refid="build.classpath">
- </path>
- <pathelement path="${testclassesdir}">
- </pathelement>
- <pathelement path="${classesdir}">
- </pathelement>
- <!-- Manual changes for dealing with the conf directory -->
- <pathelement path="${targetconfdir}"/>
- <!-- Manual changes end -->
-
- </classpath>
- <batchtest todir="${testreportdir}">
- <fileset dir="src/test">
- <include name="**/*Test*.java">
- </include>
- <exclude name="**/TestBasePropertiesConfiguration.java">
- </exclude>
- <exclude name="**/NonStringTestHolder.java">
- </exclude>
- <exclude name="**/TestAbstractConfiguration.java">
- </exclude>
- <exclude name="**/AbstractXPathTest.java">
- </exclude>
- <exclude name="**/AbstractCombinerTest.java"/>
- <exclude name="**/AbstractTestConfigurationEvents.java"/>
- <exclude name="**/AbstractTestFileConfigurationEvents.java"/>
- <exclude name="**/AbstractTestPListEvents.java"/>
- <exclude name="**/InterpolationTestHelper.java"/>
- </fileset>
- </batchtest>
- </junit>
- </target>
- <target name="junit-present" unless="Junit.present" depends="init">
- <echo>================================= WARNING
================================</echo>
- <echo>Junit isn't present in your ${ANT_HOME}/lib directory. Tests not
executed.</echo>
-
<echo>==========================================================================</echo>
- </target>
- <target name="compile-tests" if="Junit.present"
depends="junit-present,compile">
- <mkdir dir="${testclassesdir}">
- </mkdir>
- <javac destdir="${testclassesdir}" deprecation="true" debug="true"
optimize="false" excludes="**/package.html">
- <src>
- <pathelement location="${test.home}">
- </pathelement>
- </src>
- <classpath>
- <path refid="build.classpath">
- </path>
- <pathelement path="${classesdir}">
- </pathelement>
- </classpath>
- </javac>
- <!-- Manual changes for dealing with the conf directory -->
- <mkdir dir="${targetconfdir}"/>
- <copy todir="${targetconfdir}">
- <fileset dir="${confdir}">
- <include name="**/*.*">
- </include>
- </fileset>
- </copy>
- <mkdir dir="${targetconfdir}/org/apache/commons/configuration">
- </mkdir>
- <copy todir="${targetconfdir}/org/apache/commons/configuration">
- <fileset dir="${confdir}">
- <include name="test.properties">
- </include>
- <include name="include.properties">
- </include>
- </fileset>
- </copy>
- <!-- Manual changes end -->
- </target>
- <target name="javadoc" description="o Generate javadoc" depends="get-deps">
- <mkdir dir="${javadocdir}">
- </mkdir>
- <tstamp>
- <format pattern="2001-yyyy" property="year">
- </format>
- </tstamp>
- <property name="copyright" value="Copyright &copy; The Apache
Software Foundation. All Rights Reserved.">
- </property>
- <property name="title" value="Commons Configuration ${component.version}
API">
- </property>
- <javadoc use="true" private="true" destdir="${javadocdir}" author="true"
version="true" sourcepath="src/java"
packagenames="org.apache.commons.configuration.*">
- <classpath>
- <path refid="build.classpath">
- </path>
- </classpath>
- </javadoc>
- </target>
- <target name="get-deps" unless="noget" depends="init">
- <!--Proxy settings works only with a JDK 1.2 and higher.-->
- <setproxy>
- </setproxy>
- <get dest="${libdir}/commons-collections-3.2.1.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar">
- </get>
- <get dest="${libdir}/commons-lang-2.5.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-lang/commons-lang/2.5/commons-lang-2.5.jar">
- </get>
- <get dest="${libdir}/commons-logging-1.1.1.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar">
- </get>
- <get dest="${libdir}/commons-digester-1.8.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-digester/commons-digester/1.8/commons-digester-1.8.jar">
- </get>
- <get dest="${libdir}/commons-beanutils-1.8.0.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-beanutils/commons-beanutils/1.8.0/commons-beanutils-1.8.0.jar">
- </get>
- <get dest="${libdir}/commons-codec-1.3.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-codec/commons-codec/1.3/commons-codec-1.3.jar">
- </get>
- <get dest="${libdir}/commons-jxpath-1.3.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar">
- </get>
- <get dest="${libdir}/xercesImpl-2.3.0.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/xerces/xercesImpl/2.3.0/xercesImpl-2.3.0.jar">
- </get>
- <get dest="${libdir}/xalan-2.7.0.jar" usetimestamp="true"
ignoreerrors="true" src="${repository}/xalan/xalan/2.7.0/xalan-2.7.0.jar">
- </get>
- <get dest="${libdir}/xml-apis-1.0.b2.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar">
- </get>
- <get dest="${libdir}/servletapi-2.4.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/servletapi/servletapi/2.4/servletapi-2.4.jar">
- </get>
- <get dest="${libdir}/commons-dbcp-1.2.2.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar">
- </get>
- <get dest="${libdir}/commons-pool-1.4.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/commons-pool/commons-pool/1.4/commons-pool-1.4.jar">
- </get>
- <get dest="${libdir}/hsqldb-1.7.2.2.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/hsqldb/hsqldb/1.7.2.2/hsqldb-1.7.2.2.jar">
- </get>
- <get dest="${libdir}/dbunit-2.1.jar" usetimestamp="true"
ignoreerrors="true" src="${repository}/dbunit/dbunit/2.1/dbunit-2.1.jar">
- </get>
- <get dest="${libdir}/junit-3.8.1.jar" usetimestamp="true"
ignoreerrors="true" src="${repository}/junit/junit/3.8.1/junit-3.8.1.jar">
- </get>
- <get dest="${libdir}/junit-addons-1.4.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/junit-addons/junit-addons/1.4/junit-addons-1.4.jar">
- </get>
- <get dest="${libdir}/mockobjects-core-0.09.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/mockobjects/mockobjects-core/0.09/mockobjects-core-0.09.jar">
- </get>
- <get dest="${libdir}/mockobjects-jdk1.4-j2ee1.3-0.09.jar"
usetimestamp="true" ignoreerrors="true"
src="${repository}/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09/mockobjects-jdk1.4-j2ee1.3-0.09.jar">
- </get>
- <get dest="${libdir}/maven-tasks-plugin-1.1.0.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/maven-plugins/maven-tasks-plugin/1.1.0/maven-tasks-plugin-1.1.0.jar">
- </get>
- <get dest="${libdir}/maven-findbugs-plugin-0.8.4.jar" usetimestamp="true"
ignoreerrors="true"
src="${repository}/maven-plugins/maven-findbugs-plugin/0.8.4/maven-findbugs-plugin-0.8.4.jar">
- </get>
- <get dest="${libdir}/mail-1.4.jar" usetimestamp="true" ignoreerrors="true"
src="${repository}/javax/mail/mail/1.4/mail-1.4.jar">
- </get>
- <get dest="${libdir}/ant-1.6.5.jar" usetimestamp="true"
ignoreerrors="true" src="${repository}/ant/ant/1.6.5/ant-1.6.5.jar">
- </get>
- </target>
- <target name="install-maven">
- <get dest="${user.home}/maven-install-latest.jar" usetimestamp="true"
src="${repo}/maven/maven-install-latest.jar">
- </get>
- <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
- </unjar>
- </target>
</project>
Added: commons/proper/configuration/trunk/maven-build.properties
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/maven-build.properties?rev=1159758&view=auto
==============================================================================
--- commons/proper/configuration/trunk/maven-build.properties (added)
+++ commons/proper/configuration/trunk/maven-build.properties Fri Aug 19
19:45:08 2011
@@ -0,0 +1,55 @@
+#Generated by Maven Ant Plugin - DO NOT EDIT THIS FILE!
+#Thu Aug 18 22:24:55 CEST 2011
+maven.build.testDir.0=src/test
+maven.settings.offline=false
+commons.encoding=iso-8859-1
+commons.compiler.javac=
+commons.javadoc.java.link=http\://download.oracle.com/javase/6/docs/api/
+commons.osgi.dynamicImport=
+commons.docEncoding=iso-8859-1
+commons.release.2.name=commons-configuration-${commons.release.2.version}
+maven.settings.interactiveMode=true
+commons.osgi.private=
+commons.release.version=1.6
+commons.componentid=configuration
+maven.reporting.outputDirectory=${maven.build.dir}/site
+commons.osgi.symbolicName=org.apache.commons.configuration
+project.build.sourceEncoding=iso-8859-1
+maven.build.testOutputDir=${maven.build.dir}/test-classes
+commons.compiler.fork=false
+commons.binary.suffix=
+maven.build.finalName=commons-configuration-1.7-SNAPSHOT
+maven.test.reports=${maven.build.dir}/test-reports
+commons.osgi.export=org.apache.commons.*;version\=1.7-SNAPSHOT;-noimport\:\=true
+commons.release.name=commons-configuration-1.6
+maven.compile.target=1.4
+distMgmtSnapshotsName=Apache Development Snapshot Repository
+maven.repo.local=${user.home}/.m2/repository
+maven.build.dir=target
+distMgmtSnapshotsUrl=https\://repository.apache.org/content/repositories/snapshots
+commons.surefire.java=
+maven.build.outputDir=${maven.build.dir}/classes
+project.reporting.outputEncoding=iso-8859-1
+commons.osgi.import=*
+commons.surefire.version=2.8.1
+project.build.directory=${maven.build.dir}
+maven.build.resourceDir.1=conf
+maven.build.resourceDir.0=.
+commons.release.2.desc=
+organization.logo=http\://www.apache.org/images/asf_logo_wide.gif
+commons.manifestfile=target/osgi/MANIFEST.MF
+commons.jira.pid=12310467
+maven.build.srcDir.0=src/java
+commons.rc.version=RC1
+commons.release.2.binary.suffix=-bin
+commons.compiler.compilerVersion=
+maven.build.testResourceDir.2=conf/config
+maven.build.testResourceDir.1=conf
+maven.build.testResourceDir.0=conf
+commons.javadoc.version=2.7
+maven.compile.source=1.4
+commons.deployment.protocol=scp
+project.build.outputDirectory=${maven.build.outputDir}
+sourceReleaseAssemblyDescriptor=source-release
+commons.release.desc=
+commons.jira.id=CONFIGURATION
Propchange: commons/proper/configuration/trunk/maven-build.properties
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/configuration/trunk/maven-build.properties
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange: commons/proper/configuration/trunk/maven-build.properties
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: commons/proper/configuration/trunk/maven-build.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/maven-build.xml?rev=1159758&view=auto
==============================================================================
--- commons/proper/configuration/trunk/maven-build.xml (added)
+++ commons/proper/configuration/trunk/maven-build.xml Fri Aug 19 19:45:08 2011
@@ -0,0 +1,643 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
+<!-- ====================================================================== -->
+
+<!-- ====================================================================== -->
+<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
+<!-- ====================================================================== -->
+<!-- -->
+<!-- Any modifications will be overwritten. -->
+<!-- -->
+<!-- Generated by Maven Ant Plugin on 8/18/11 10:24 PM -->
+<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/ -->
+<!-- -->
+<!-- ====================================================================== -->
+
+<project name="commons-configuration-from-maven" default="package" basedir=".">
+
+ <!-- ======================================================================
-->
+ <!-- Build environment properties
-->
+ <!-- ======================================================================
-->
+
+ <property file="${user.home}/.m2/maven.properties"/>
+ <property file="maven-build.properties"/>
+
+ <property name="maven.build.finalName"
value="commons-configuration-1.7-SNAPSHOT"/>
+ <property name="maven.build.dir" value="target"/>
+ <property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
+ <property name="maven.build.srcDir.0" value="src/java"/>
+ <property name="maven.build.resourceDir.0" value="."/>
+ <property name="maven.build.resourceDir.1" value="conf"/>
+ <property name="maven.build.testOutputDir"
value="${maven.build.dir}/test-classes"/>
+ <property name="maven.build.testDir.0" value="src/test"/>
+ <property name="maven.build.testResourceDir.0" value="conf"/>
+ <property name="maven.build.testResourceDir.1" value="conf"/>
+ <property name="maven.build.testResourceDir.2" value="conf/config"/>
+ <property name="maven.test.reports" value="${maven.build.dir}/test-reports"/>
+ <property name="maven.reporting.outputDirectory"
value="${maven.build.dir}/site"/>
+
+ <property name="maven.repo.local" value="${user.home}/.m2/repository"/>
+ <property name="maven.settings.offline" value="false"/>
+ <property name="maven.settings.interactiveMode" value="true"/>
+
+ <!-- ======================================================================
-->
+ <!-- Defining classpaths
-->
+ <!-- ======================================================================
-->
+
+ <path id="build.classpath">
+ <pathelement
location="${maven.repo.local}/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/commons/commons-vfs2/2.0-SNAPSHOT/commons-vfs2-2.0-20110818.063144-26.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/regexp/regexp/1.3/regexp-1.3.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar"/>
+ <pathelement
location="${maven.repo.local}/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar"/>
+ <pathelement
location="${maven.repo.local}/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/ant/ant/1.8.2/ant-1.8.2.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/ant/ant-launcher/1.8.2/ant-launcher-1.8.2.jar"/>
+ <pathelement
location="${maven.repo.local}/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"/>
+ <pathelement
location="${maven.repo.local}/log4j/log4j/1.2.8/log4j-1.2.8.jar"/>
+ </path>
+ <path id="build.test.classpath">
+ <pathelement
location="${maven.repo.local}/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/commons/commons-vfs2/2.0-SNAPSHOT/commons-vfs2-2.0-20110818.063144-26.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/regexp/regexp/1.3/regexp-1.3.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar"/>
+ <pathelement
location="${maven.repo.local}/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar"/>
+ <pathelement
location="${maven.repo.local}/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/ant/ant/1.8.2/ant-1.8.2.jar"/>
+ <pathelement
location="${maven.repo.local}/org/apache/ant/ant-launcher/1.8.2/ant-launcher-1.8.2.jar"/>
+ <pathelement
location="${maven.repo.local}/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"/>
+ <pathelement
location="${maven.repo.local}/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar"/>
+ <pathelement
location="${maven.repo.local}/commons-pool/commons-pool/1.4/commons-pool-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/hsqldb/hsqldb/1.7.2.2/hsqldb-1.7.2.2.jar"/>
+ <pathelement
location="${maven.repo.local}/dbunit/dbunit/2.1/dbunit-2.1.jar"/>
+ <pathelement
location="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar"/>
+ <pathelement
location="${maven.repo.local}/junit-addons/junit-addons/1.4/junit-addons-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/mockobjects/mockobjects-core/0.09/mockobjects-core-0.09.jar"/>
+ <pathelement
location="${maven.repo.local}/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09/mockobjects-jdk1.4-j2ee1.3-0.09.jar"/>
+ <pathelement
location="${maven.repo.local}/javax/mail/mail/1.4/mail-1.4.jar"/>
+ <pathelement
location="${maven.repo.local}/javax/activation/activation/1.1/activation-1.1.jar"/>
+ <pathelement
location="${maven.repo.local}/log4j/log4j/1.2.8/log4j-1.2.8.jar"/>
+ <pathelement
location="${maven.repo.local}/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar"/>
+ <pathelement
location="${maven.repo.local}/org/slf4j/slf4j-ext/1.5.6/slf4j-ext-1.5.6.jar"/>
+ <pathelement
location="${maven.repo.local}/org/slf4j/slf4j-log4j12/1.5.6/slf4j-log4j12-1.5.6.jar"/>
+ </path>
+
+ <!-- ======================================================================
-->
+ <!-- Cleaning up target
-->
+ <!-- ======================================================================
-->
+
+ <target name="clean" description="Clean the output directory">
+ <delete dir="${maven.build.dir}"/>
+ </target>
+
+ <!-- ======================================================================
-->
+ <!-- Compilation target
-->
+ <!-- ======================================================================
-->
+
+ <target name="compile" depends="get-deps" description="Compile the code">
+ <mkdir dir="${maven.build.outputDir}"/>
+ <javac destdir="${maven.build.outputDir}"
+ encoding="iso-8859-1"
+ nowarn="false"
+ debug="true"
+ optimize="false"
+ deprecation="true"
+ target="1.4"
+ verbose="false"
+ fork="false"
+ source="1.4">
+ <src>
+ <pathelement location="${maven.build.srcDir.0}"/>
+ </src>
+ <classpath refid="build.classpath"/>
+ </javac>
+ <mkdir dir="${maven.build.outputDir}/META-INF"/>
+ <copy todir="${maven.build.outputDir}/META-INF">
+ <fileset dir="${maven.build.resourceDir.0}">
+ <include name="NOTICE.txt"/>
+ <include name="LICENSE.txt"/>
+ </fileset>
+ </copy>
+ <copy todir="${maven.build.outputDir}">
+ <fileset dir="${maven.build.resourceDir.1}">
+ <include name="digesterRules.xml"/>
+ <include name="properties.dtd"/>
+ <include name="PropertyList-1.0.dtd"/>
+ </fileset>
+ </copy>
+ </target>
+
+ <!-- ======================================================================
-->
+ <!-- Test-compilation target
-->
+ <!-- ======================================================================
-->
+
+ <target name="compile-tests"
+ depends="compile"
+ description="Compile the test code"
+ unless="maven.test.skip">
+ <mkdir dir="${maven.build.testOutputDir}"/>
+ <javac destdir="${maven.build.testOutputDir}"
+ encoding="iso-8859-1"
+ nowarn="false"
+ debug="true"
+ optimize="false"
+ deprecation="true"
+ target="1.4"
+ verbose="false"
+ fork="false"
+ source="1.4">
+ <src>
+ <pathelement location="${maven.build.testDir.0}"/>
+ </src>
+ <classpath>
+ <path refid="build.test.classpath"/>
+ <pathelement location="${maven.build.outputDir}"/>
+ </classpath>
+ </javac>
+ <copy todir="${maven.build.testOutputDir}">
+ <fileset dir="${maven.build.testResourceDir.0}">
+ <include name="*.xml"/>
+ <include name="testdb.script"/>
+ <include name="*.properties"/>
+ <include name="*.dtd"/>
+ <include name="*.xsd"/>
+ </fileset>
+ </copy>
+ <mkdir
dir="${maven.build.testOutputDir}/org/apache/commons/configuration"/>
+ <copy
todir="${maven.build.testOutputDir}/org/apache/commons/configuration">
+ <fileset dir="${maven.build.testResourceDir.1}">
+ <include name="test.properties"/>
+ <include name="include.properties"/>
+ </fileset>
+ </copy>
+ <mkdir dir="${maven.build.testOutputDir}/config"/>
+ <copy todir="${maven.build.testOutputDir}/config">
+ <fileset dir="${maven.build.testResourceDir.2}">
+ <include name="**/*.properties"/>
+ </fileset>
+ </copy>
+ </target>
+
+ <!-- ======================================================================
-->
+ <!-- Run all tests
-->
+ <!-- ======================================================================
-->
+
+ <target name="test"
+ depends="compile-tests, junit-missing"
+ unless="junit.skipped"
+ description="Run the test cases">
+ <mkdir dir="${maven.test.reports}"/>
+ <junit printSummary="yes" haltonerror="true" haltonfailure="true"
fork="true" dir=".">
+ <sysproperty key="basedir" value="."/>
+ <formatter type="xml"/>
+ <formatter type="plain" usefile="false"/>
+ <classpath>
+ <path refid="build.test.classpath"/>
+ <pathelement location="${maven.build.outputDir}"/>
+ <pathelement location="${maven.build.testOutputDir}"/>
+ </classpath>
+ <batchtest todir="${maven.test.reports}" unless="test">
+ <fileset dir="${maven.build.testDir.0}">
+ <include name="**/Test*.java"/>
+ <include name="**/*Test.java"/>
+ <include name="**/*TestCase.java"/>
+ <exclude name="**/TestWebdavConfigurationBuilder.java"/>
+ <exclude name="**/TestAbstractConfiguration.java"/>
+ <exclude name="**/AbstractCombinerTest.java"/>
+ <exclude name="**/AbstractXPathTest.java"/>
+ </fileset>
+ </batchtest>
+ <batchtest todir="${maven.test.reports}" if="test">
+ <fileset dir="${maven.build.testDir.0}">
+ <include name="**/${test}.java"/>
+ <exclude name="**/TestWebdavConfigurationBuilder.java"/>
+ </fileset>
+ </batchtest>
+ </junit>
+ </target>
+
+ <target name="test-junit-present">
+ <available classname="junit.framework.Test" property="junit.present"/>
+ </target>
+
+ <target name="test-junit-status"
+ depends="test-junit-present">
+ <condition property="junit.missing">
+ <and>
+ <isfalse value="${junit.present}"/>
+ <isfalse value="${maven.test.skip}"/>
+ </and>
+ </condition>
+ <condition property="junit.skipped">
+ <or>
+ <isfalse value="${junit.present}"/>
+ <istrue value="${maven.test.skip}"/>
+ </or>
+ </condition>
+ </target>
+
+ <target name="junit-missing"
+ depends="test-junit-status"
+ if="junit.missing">
+ <echo>=================================== WARNING
===================================</echo>
+ <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not
executed.</echo>
+
<echo>===============================================================================</echo>
+ </target>
+
+ <!-- ======================================================================
-->
+ <!-- Javadoc target
-->
+ <!-- ======================================================================
-->
+
+ <target name="javadoc" description="Generates the Javadoc of the
application">
+ <javadoc sourcepath="${maven.build.srcDir.0}"
+ packagenames="*"
+ destdir="${maven.reporting.outputDirectory}/apidocs"
+ access="protected"
+ old="false"
+ verbose="false"
+ encoding="iso-8859-1"
+ version="true"
+ use="true"
+ author="true"
+ splitindex="false"
+ nodeprecated="false"
+ nodeprecatedlist="false"
+ notree="false"
+ noindex="false"
+ nohelp="false"
+ nonavbar="false"
+ serialwarn="false"
+ charset="ISO-8859-1"
+ source="1.4"
+ linksource="true"
+ breakiterator="false">
+ <link href="http://download.oracle.com/javase/6/docs/api/"/>
+ </javadoc>
+ </target>
+
+ <!-- ======================================================================
-->
+ <!-- Package target
-->
+ <!-- ======================================================================
-->
+
+ <target name="package" depends="compile,test" description="Package the
application">
+ <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar"
+ compress="true"
+ index="false"
+ basedir="${maven.build.outputDir}"
+ excludes="**/package.html">
+ </jar>
+ </target>
+
+ <!-- ======================================================================
-->
+ <!-- A dummy target for the package named after the type it creates
-->
+ <!-- ======================================================================
-->
+
+ <target name="jar" depends="package" description="Builds the jar for the
application"/>
+
+ <!-- ======================================================================
-->
+ <!-- Download dependencies target
-->
+ <!-- ======================================================================
-->
+
+ <target name="test-offline">
+ <condition property="maven.mode.offline">
+ <equals arg1="${maven.settings.offline}" arg2="true"/>
+ </condition>
+ </target>
+
+ <target name="get-deps"
+ depends="test-offline"
+ description="Download all dependencies"
+ unless="maven.mode.offline">
+ <mkdir dir="${maven.repo.local}"/>
+ <mkdir
dir="${maven.repo.local}/commons-collections/commons-collections/3.2.1"/>
+ <get
src="http://repository.apache.org/snapshots/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar"
+
dest="${maven.repo.local}/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar"
+
dest="${maven.repo.local}/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-lang/commons-lang/2.6"/>
+ <get
src="http://repository.apache.org/snapshots/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"
+
dest="${maven.repo.local}/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"
+
dest="${maven.repo.local}/commons-lang/commons-lang/2.6/commons-lang-2.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-logging/commons-logging/1.1.1"/>
+ <get
src="http://repository.apache.org/snapshots/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
+
dest="${maven.repo.local}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
+
dest="${maven.repo.local}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-digester/commons-digester/1.8.1"/>
+ <get
src="http://repository.apache.org/snapshots/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"
+
dest="${maven.repo.local}/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"
+
dest="${maven.repo.local}/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir
dir="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3"/>
+ <get
src="http://repository.apache.org/snapshots/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
+
dest="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
+
dest="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-codec/commons-codec/1.5"/>
+ <get
src="http://repository.apache.org/snapshots/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"
+
dest="${maven.repo.local}/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"
+
dest="${maven.repo.local}/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-jexl/commons-jexl/1.1"/>
+ <get
src="http://repository.apache.org/snapshots/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar"
+
dest="${maven.repo.local}/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar"
+
dest="${maven.repo.local}/commons-jexl/commons-jexl/1.1/commons-jexl-1.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir
dir="${maven.repo.local}/org/apache/commons/commons-vfs2/2.0-SNAPSHOT"/>
+ <get
src="http://repository.apache.org/snapshots/org/apache/commons/commons-vfs2/2.0-SNAPSHOT/commons-vfs2-2.0-20110818.063144-26.jar"
+
dest="${maven.repo.local}/org/apache/commons/commons-vfs2/2.0-SNAPSHOT/commons-vfs2-2.0-20110818.063144-26.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/apache/commons/commons-vfs2/2.0-SNAPSHOT/commons-vfs2-2.0-20110818.063144-26.jar"
+
dest="${maven.repo.local}/org/apache/commons/commons-vfs2/2.0-SNAPSHOT/commons-vfs2-2.0-20110818.063144-26.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/apache/maven/scm/maven-scm-api/1.4"/>
+ <get
src="http://repository.apache.org/snapshots/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar"
+
dest="${maven.repo.local}/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar"
+
dest="${maven.repo.local}/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/codehaus/plexus/plexus-utils/1.5.6"/>
+ <get
src="http://repository.apache.org/snapshots/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar"
+
dest="${maven.repo.local}/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar"
+
dest="${maven.repo.local}/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir
dir="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svnexe/1.4"/>
+ <get
src="http://repository.apache.org/snapshots/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar"
+
dest="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar"
+
dest="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir
dir="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4"/>
+ <get
src="http://repository.apache.org/snapshots/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar"
+
dest="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar"
+
dest="${maven.repo.local}/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/regexp/regexp/1.3"/>
+ <get
src="http://repository.apache.org/snapshots/regexp/regexp/1.3/regexp-1.3.jar"
+ dest="${maven.repo.local}/regexp/regexp/1.3/regexp-1.3.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get src="http://repo1.maven.org/maven2/regexp/regexp/1.3/regexp-1.3.jar"
+ dest="${maven.repo.local}/regexp/regexp/1.3/regexp-1.3.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-jxpath/commons-jxpath/1.3"/>
+ <get
src="http://repository.apache.org/snapshots/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar"
+
dest="${maven.repo.local}/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar"
+
dest="${maven.repo.local}/commons-jxpath/commons-jxpath/1.3/commons-jxpath-1.3.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/xml-resolver/xml-resolver/1.2"/>
+ <get
src="http://repository.apache.org/snapshots/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar"
+
dest="${maven.repo.local}/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar"
+
dest="${maven.repo.local}/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/javax/servlet/servlet-api/2.4"/>
+ <get
src="http://repository.apache.org/snapshots/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"
+
dest="${maven.repo.local}/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"
+
dest="${maven.repo.local}/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/apache/ant/ant/1.8.2"/>
+ <get
src="http://repository.apache.org/snapshots/org/apache/ant/ant/1.8.2/ant-1.8.2.jar"
+ dest="${maven.repo.local}/org/apache/ant/ant/1.8.2/ant-1.8.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/apache/ant/ant/1.8.2/ant-1.8.2.jar"
+ dest="${maven.repo.local}/org/apache/ant/ant/1.8.2/ant-1.8.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/apache/ant/ant-launcher/1.8.2"/>
+ <get
src="http://repository.apache.org/snapshots/org/apache/ant/ant-launcher/1.8.2/ant-launcher-1.8.2.jar"
+
dest="${maven.repo.local}/org/apache/ant/ant-launcher/1.8.2/ant-launcher-1.8.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/apache/ant/ant-launcher/1.8.2/ant-launcher-1.8.2.jar"
+
dest="${maven.repo.local}/org/apache/ant/ant-launcher/1.8.2/ant-launcher-1.8.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/xerces/xercesImpl/2.6.2"/>
+ <get
src="http://repository.apache.org/snapshots/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"
+
dest="${maven.repo.local}/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"
+
dest="${maven.repo.local}/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/xml-apis/xml-apis/1.0.b2"/>
+ <get
src="http://repository.apache.org/snapshots/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"
+
dest="${maven.repo.local}/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"
+
dest="${maven.repo.local}/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-dbcp/commons-dbcp/1.2.2"/>
+ <get
src="http://repository.apache.org/snapshots/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar"
+
dest="${maven.repo.local}/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar"
+
dest="${maven.repo.local}/commons-dbcp/commons-dbcp/1.2.2/commons-dbcp-1.2.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/commons-pool/commons-pool/1.4"/>
+ <get
src="http://repository.apache.org/snapshots/commons-pool/commons-pool/1.4/commons-pool-1.4.jar"
+
dest="${maven.repo.local}/commons-pool/commons-pool/1.4/commons-pool-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/commons-pool/commons-pool/1.4/commons-pool-1.4.jar"
+
dest="${maven.repo.local}/commons-pool/commons-pool/1.4/commons-pool-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/hsqldb/hsqldb/1.7.2.2"/>
+ <get
src="http://repository.apache.org/snapshots/hsqldb/hsqldb/1.7.2.2/hsqldb-1.7.2.2.jar"
+ dest="${maven.repo.local}/hsqldb/hsqldb/1.7.2.2/hsqldb-1.7.2.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/hsqldb/hsqldb/1.7.2.2/hsqldb-1.7.2.2.jar"
+ dest="${maven.repo.local}/hsqldb/hsqldb/1.7.2.2/hsqldb-1.7.2.2.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/dbunit/dbunit/2.1"/>
+ <get
src="http://repository.apache.org/snapshots/dbunit/dbunit/2.1/dbunit-2.1.jar"
+ dest="${maven.repo.local}/dbunit/dbunit/2.1/dbunit-2.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get src="http://repo1.maven.org/maven2/dbunit/dbunit/2.1/dbunit-2.1.jar"
+ dest="${maven.repo.local}/dbunit/dbunit/2.1/dbunit-2.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/junit/junit/3.8.1"/>
+ <get
src="http://repository.apache.org/snapshots/junit/junit/3.8.1/junit-3.8.1.jar"
+ dest="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get src="http://repo1.maven.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar"
+ dest="${maven.repo.local}/junit/junit/3.8.1/junit-3.8.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/junit-addons/junit-addons/1.4"/>
+ <get
src="http://repository.apache.org/snapshots/junit-addons/junit-addons/1.4/junit-addons-1.4.jar"
+
dest="${maven.repo.local}/junit-addons/junit-addons/1.4/junit-addons-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/junit-addons/junit-addons/1.4/junit-addons-1.4.jar"
+
dest="${maven.repo.local}/junit-addons/junit-addons/1.4/junit-addons-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/mockobjects/mockobjects-core/0.09"/>
+ <get
src="http://repository.apache.org/snapshots/mockobjects/mockobjects-core/0.09/mockobjects-core-0.09.jar"
+
dest="${maven.repo.local}/mockobjects/mockobjects-core/0.09/mockobjects-core-0.09.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/mockobjects/mockobjects-core/0.09/mockobjects-core-0.09.jar"
+
dest="${maven.repo.local}/mockobjects/mockobjects-core/0.09/mockobjects-core-0.09.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir
dir="${maven.repo.local}/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09"/>
+ <get
src="http://repository.apache.org/snapshots/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09/mockobjects-jdk1.4-j2ee1.3-0.09.jar"
+
dest="${maven.repo.local}/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09/mockobjects-jdk1.4-j2ee1.3-0.09.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09/mockobjects-jdk1.4-j2ee1.3-0.09.jar"
+
dest="${maven.repo.local}/mockobjects/mockobjects-jdk1.4-j2ee1.3/0.09/mockobjects-jdk1.4-j2ee1.3-0.09.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/javax/mail/mail/1.4"/>
+ <get
src="http://repository.apache.org/snapshots/javax/mail/mail/1.4/mail-1.4.jar"
+ dest="${maven.repo.local}/javax/mail/mail/1.4/mail-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get src="http://repo1.maven.org/maven2/javax/mail/mail/1.4/mail-1.4.jar"
+ dest="${maven.repo.local}/javax/mail/mail/1.4/mail-1.4.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/javax/activation/activation/1.1"/>
+ <get
src="http://repository.apache.org/snapshots/javax/activation/activation/1.1/activation-1.1.jar"
+
dest="${maven.repo.local}/javax/activation/activation/1.1/activation-1.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/javax/activation/activation/1.1/activation-1.1.jar"
+
dest="${maven.repo.local}/javax/activation/activation/1.1/activation-1.1.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/log4j/log4j/1.2.8"/>
+ <get
src="http://repository.apache.org/snapshots/log4j/log4j/1.2.8/log4j-1.2.8.jar"
+ dest="${maven.repo.local}/log4j/log4j/1.2.8/log4j-1.2.8.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get src="http://repo1.maven.org/maven2/log4j/log4j/1.2.8/log4j-1.2.8.jar"
+ dest="${maven.repo.local}/log4j/log4j/1.2.8/log4j-1.2.8.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/slf4j/slf4j-api/1.5.6"/>
+ <get
src="http://repository.apache.org/snapshots/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar"
+
dest="${maven.repo.local}/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar"
+
dest="${maven.repo.local}/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/slf4j/slf4j-ext/1.5.6"/>
+ <get
src="http://repository.apache.org/snapshots/org/slf4j/slf4j-ext/1.5.6/slf4j-ext-1.5.6.jar"
+
dest="${maven.repo.local}/org/slf4j/slf4j-ext/1.5.6/slf4j-ext-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/slf4j/slf4j-ext/1.5.6/slf4j-ext-1.5.6.jar"
+
dest="${maven.repo.local}/org/slf4j/slf4j-ext/1.5.6/slf4j-ext-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <mkdir dir="${maven.repo.local}/org/slf4j/slf4j-log4j12/1.5.6"/>
+ <get
src="http://repository.apache.org/snapshots/org/slf4j/slf4j-log4j12/1.5.6/slf4j-log4j12-1.5.6.jar"
+
dest="${maven.repo.local}/org/slf4j/slf4j-log4j12/1.5.6/slf4j-log4j12-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ <get
src="http://repo1.maven.org/maven2/org/slf4j/slf4j-log4j12/1.5.6/slf4j-log4j12-1.5.6.jar"
+
dest="${maven.repo.local}/org/slf4j/slf4j-log4j12/1.5.6/slf4j-log4j12-1.5.6.jar"
+ usetimestamp="false"
+ ignoreerrors="true"/>
+ </target>
+
+</project>
Propchange: commons/proper/configuration/trunk/maven-build.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/configuration/trunk/maven-build.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange: commons/proper/configuration/trunk/maven-build.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: commons/proper/configuration/trunk/src/site/xdoc/building.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/site/xdoc/building.xml?rev=1159758&r1=1159757&r2=1159758&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/site/xdoc/building.xml (original)
+++ commons/proper/configuration/trunk/src/site/xdoc/building.xml Fri Aug 19
19:45:08 2011
@@ -15,12 +15,14 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
+<!-- ===================================================================== -->
+<!-- $Id$ -->
+<!-- ===================================================================== -->
<document>
<properties>
<title>Building</title>
- <author email="[email protected]">Oliver Heger</author>
</properties>
<body>
@@ -82,7 +84,7 @@
</p>
<p>
To build the Javadocs, run "ant javadoc".
- The result will be in "target/docs/apidocs".
+ The result will be in "target/site/apidocs".
</p>
</section>
</body>