You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bs...@apache.org on 2007/09/20 03:30:50 UTC

svn commit: r577493 - in /commons/proper/email/trunk: build.xml maven-build.properties maven-build.xml

Author: bspeakmon
Date: Wed Sep 19 18:30:49 2007
New Revision: 577493

URL: http://svn.apache.org/viewvc?rev=577493&view=rev
Log:
- regenerate build.xml from new pom

Added:
    commons/proper/email/trunk/maven-build.properties
    commons/proper/email/trunk/maven-build.xml
Modified:
    commons/proper/email/trunk/build.xml

Modified: commons/proper/email/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/email/trunk/build.xml?rev=577493&r1=577492&r2=577493&view=diff
==============================================================================
--- commons/proper/email/trunk/build.xml (original)
+++ commons/proper/email/trunk/build.xml Wed Sep 19 18:30:49 2007
@@ -1,260 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<project name="commons-email" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Import maven-build.xml into the current project                        -->
+  <!-- ====================================================================== -->
+
+  <import file="maven-build.xml"/>
+  
+  <!-- ====================================================================== -->
+  <!-- Help target                                                            -->
+  <!-- ====================================================================== -->
 
-     http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-
-<!--build.xml generated by maven from project.xml version 1.0
-  on date September 27 2005, time 1441-->
-
-<project default="jar" name="commons-email" basedir=".">
-  <!--Load local and user build preferences-->
-
-  <property file="build.properties">
-  </property>
-  <property file="${user.home}/build.properties">
-  </property>
-  <!--Build properties-->
-
-  <property name="defaulttargetdir" value="${basedir}/target">
-  </property>
-  <property name="libdir" value="${user.home}/.maven/repository">
-  </property>
-  <property name="classesdir" value="${basedir}/target/classes">
-  </property>
-  <property name="testclassesdir" value="${basedir}/target/test-classes">
-  </property>
-  <property name="testreportdir" value="${basedir}/target/test-reports">
-  </property>
-  <property name="distdir" value="${basedir}/dist">
-  </property>
-  <property name="javadocdir" value="${basedir}/dist/docs/api">
-  </property>
-  <property name="final.name" value="commons-email-1.1-SNAPSHOT">
-  </property>
-  <property name="proxy.host" value="">
-  </property>
-  <property name="proxy.port" value="">
-  </property>
-  <property name="proxy.username" value="">
-  </property>
-  <property name="proxy.password" value="">
-  </property>
-  <path id="build.classpath">
-    <pathelement location="${libdir}/javax.mail/jars/mail-1.4.jar">
-    </pathelement>
-    <pathelement location="${libdir}/javax.activation/jars/activation-1.1.jar">
-    </pathelement>
-    <pathelement location="${libdir}/dumbster/jars/dumbster-SNAPSHOT.jar">
-    </pathelement>
-  </path>
-  <target name="init" description="o Initializes some properties">
-    <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>
-    <!--Test if user defined a proxy-->
-
-    <condition property="useProxy">
-      <and>
-        <isset property="proxy.host">
-        </isset>
-        <not>
-          <equals trim="true" arg2="" arg1="${proxy.host}">
-          </equals>
-        </not>
-      </and>
-    </condition>
-  </target>
-  <target name="compile" description="o Compile the code" depends="get-deps">
-    <mkdir dir="${classesdir}">
-    </mkdir>
-    <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html" source="1.4" target="1.4">
-      <src>
-        <pathelement location="${basedir}/src/java">
-        </pathelement>
-      </src>
-      <classpath refid="build.classpath">
-      </classpath>
-    </javac>
-    <mkdir dir="${classesdir}/META-INF">
-    </mkdir>
-    <copy todir="${classesdir}/META-INF">
-      <fileset dir="${basedir}/.">
-        <include name="NOTICE.txt">
-        </include>
-      </fileset>
-    </copy>
-  </target>
-  <target name="jar" description="o Create the jar" depends="compile,test">
-    <jar jarfile="${defaulttargetdir}/${final.name}.jar" excludes="**/package.html" basedir="${classesdir}">
-    </jar>
-  </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="${basedir}" failureproperty="test.failure" printSummary="yes" fork="true" haltonerror="true">
-      <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>
-      </classpath>
-      <batchtest todir="${testreportdir}">
-        <fileset dir="${basedir}/src/test">
-          <include name="**/*Test.java">
-          </include>
-        </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" source="1.4" target="1.4">
-      <src>
-        <pathelement location="${basedir}/src/test">
-        </pathelement>
-      </src>
-      <classpath>
-        <path refid="build.classpath">
-        </path>
-        <pathelement path="${classesdir}">
-        </pathelement>
-      </classpath>
-    </javac>
-    <copy todir="${testclassesdir}">
-      <fileset dir="${basedir}/src/test">
-        <exclude name="**/*.java">
-        </exclude>
-      </fileset>
-    </copy>
-  </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 &amp;copy;  The Apache Software Foundation. All Rights Reserved.">
-    </property>
-    <property name="title" value="Commons Email 1.0 API">
-    </property>
-    <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="${basedir}/src/java" packagenames="org.apache.commons.mail.*">
-      <classpath>
-        <path refid="build.classpath">
-        </path>
-      </classpath>
-    </javadoc>
-  </target>
-  <target name="get-dep-javamail.jar" description="o Download the dependency : javamail.jar" unless="javamail.jar" depends="init,setProxy,noProxy,get-custom-dep-javamail.jar">
-    <mkdir dir="${libdir}/javax.mail/jars/">
-    </mkdir>
-    <get dest="${libdir}/javax.mail/jars/mail-1.4.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/javax.mail/jars/mail-1.4.jar">
-    </get>
-  </target>
-  <target name="get-custom-dep-javamail.jar" if="javamail.jar" depends="init,setProxy,noProxy">
-    <mkdir dir="${libdir}/javax.mail/jars/">
-    </mkdir>
-    <get dest="${libdir}/javax.mail/jars/mail-1.4.jar" usetimestamp="true" ignoreerrors="true" src="${javamail.jar}">
-    </get>
-  </target>
-  <target name="get-dep-activation.jar" description="o Download the dependency : activation.jar" unless="activation.jar" depends="init,setProxy,noProxy,get-custom-dep-activation.jar">
-    <mkdir dir="${libdir}/javax.activation/jars/">
-    </mkdir>
-    <get dest="${libdir}/javax.activation/jars/activation-1.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/javax.activation/jars/activation-1.1.jar">
-    </get>
-  </target>
-  <target name="get-custom-dep-activation.jar" if="activation.jar" depends="init,setProxy,noProxy">
-    <mkdir dir="${libdir}/javax.activation/jars/">
-    </mkdir>
-    <get dest="${libdir}/javax.activation/jars/activation-1.1.jar" usetimestamp="true" ignoreerrors="true" src="${activation.jar}">
-    </get>
-  </target>
-  <target name="get-dep-dumbster.jar" description="o Download the dependency : dumbster.jar" unless="dumbster.jar" depends="init,setProxy,noProxy,get-custom-dep-dumbster.jar">
-    <mkdir dir="${libdir}/dumbster/jars/">
-    </mkdir>
-    <get dest="${libdir}/dumbster/jars/dumbster-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="http://people.apache.org/repo/m1-snapshot-repository/dumbster/jars/dumbster-SNAPSHOT.jar">
-    </get>
-  </target>
-  <target name="get-custom-dep-dumbster.jar" if="dumbster.jar" depends="init,setProxy,noProxy">
-    <mkdir dir="${libdir}/dumbster/jars/">
-    </mkdir>
-    <get dest="${libdir}/dumbster/jars/dumbster-SNAPSHOT.jar" usetimestamp="true" ignoreerrors="true" src="${dumbster.jar}">
-    </get>
-  </target>
-  <target name="get-deps" unless="noget" depends="get-dep-javamail.jar,get-dep-activation.jar,get-dep-dumbster.jar">
-  </target>
-  <target name="setProxy" if="useProxy" depends="init">
-    <!--Proxy settings works only with a JDK 1.2 and higher.-->
-
-    <echo>Proxy used :</echo>
-    <echo>Proxy host [${proxy.host}]</echo>
-    <echo>Proxy port [${proxy.port}]</echo>
-    <echo>Proxy user [${proxy.username}]</echo>
-    <setproxy proxyuser="${proxy.username}" proxyport="${proxy.port}" proxypassword="${proxy.password}" proxyhost="${proxy.host}">
-    </setproxy>
-  </target>
-  <target name="noProxy" unless="useProxy" depends="init">
-    <echo>Proxy not used.</echo>
-  </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 name="help">
+    <echo message="Please run: $ant -projecthelp"/>
   </target>
-</project>
+</project>
\ No newline at end of file

Added: commons/proper/email/trunk/maven-build.properties
URL: http://svn.apache.org/viewvc/commons/proper/email/trunk/maven-build.properties?rev=577493&view=auto
==============================================================================
--- commons/proper/email/trunk/maven-build.properties (added)
+++ commons/proper/email/trunk/maven-build.properties Wed Sep 19 18:30:49 2007
@@ -0,0 +1,21 @@
+#Generated by Maven Ant Plugin - DO NOT EDIT THIS FILE!
+#Wed Sep 19 18:28:25 PDT 2007
+maven.settings.offline=false
+maven.compile.target=1.3
+maven.build.finalName=commons-email-1.1-RC1
+maven.build.resourceDir.0=.
+maven.build.testOutputDir=${maven.build.dir}/test-classes
+maven.build.testResourceDir.0=src/test
+maven.reporting.outputDirectory=${maven.build.dir}/site
+maven.build.srcDir.0=src/java
+project.build.directory=${maven.build.dir}
+maven.test.reports=${maven.build.dir}/test-reports
+maven.build.dir=target
+project.build.outputDirectory=${maven.build.outputDir}
+maven.compile.source=1.3
+organization.logo=http\://www.apache.org/images/asf_logo_wide.gif
+maven.build.testDir.0=src/test
+maven.settings.interactiveMode=true
+maven.repo.local=${user.home}/.m2/repository
+commons.deployment.protocol=scp
+maven.build.outputDir=${maven.build.dir}/classes

Added: commons/proper/email/trunk/maven-build.xml
URL: http://svn.apache.org/viewvc/commons/proper/email/trunk/maven-build.xml?rev=577493&view=auto
==============================================================================
--- commons/proper/email/trunk/maven-build.xml (added)
+++ commons/proper/email/trunk/maven-build.xml Wed Sep 19 18:30:49 2007
@@ -0,0 +1,417 @@
+<?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 9/19/07 6:28 PM                       -->
+<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/                 -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<project name="commons-email-from-maven" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Build environnement properties                                         -->
+  <!-- ====================================================================== -->
+
+  <property file="${user.home}/.m2/maven.properties"/>
+  <property file="maven-build.properties"/>
+
+  <property name="maven.build.finalName" value="commons-email-1.1-RC1"/>
+  <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.testOutputDir" value="${maven.build.dir}/test-classes"/>
+  <property name="maven.build.testDir.0" value="src/test"/>
+  <property name="maven.build.testResourceDir.0" value="."/>
+  <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">
+    <fileset dir="${maven.repo.local}">
+      <include name="javax/activation/activation/1.1/activation-1.1.jar"/>
+      <include name="javax/mail/mail/1.4/mail-1.4.jar"/>
+    </fileset>
+  </path>
+  <path id="build.test.classpath">
+    <fileset dir="${maven.repo.local}">
+      <include name="commons-logging/commons-logging/1.1/commons-logging-1.1.jar"/>
+      <include name="backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar"/>
+      <include name="org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2-java14.jar"/>
+      <include name="saxpath/saxpath/1.0-FCS/saxpath-1.0-FCS.jar"/>
+      <include name="xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"/>
+      <include name="jaxen/jaxen/1.0-FCS/jaxen-1.0-FCS.jar"/>
+      <include name="javax/servlet/servlet-api/2.3/servlet-api-2.3.jar"/>
+      <include name="javax/activation/activation/1.1/activation-1.1.jar"/>
+      <include name="dom4j/dom4j/1.4/dom4j-1.4.jar"/>
+      <include name="junit/junit/3.8.1/junit-3.8.1.jar"/>
+      <include name="javax/mail/mail/1.4/mail-1.4.jar"/>
+      <include name="log4j/log4j/1.2.12/log4j-1.2.12.jar"/>
+      <include name="relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar"/>
+      <include name="org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2-java14.jar"/>
+      <include name="msv/msv/20020414/msv-20020414.jar"/>
+      <include name="isorelax/isorelax/20020414/isorelax-20020414.jar"/>
+      <include name="net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar"/>
+      <include name="logkit/logkit/1.0.1/logkit-1.0.1.jar"/>
+      <include name="avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar"/>
+    </fileset>
+  </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}" 
+           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>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Test-compilation target                                                -->
+  <!-- ====================================================================== -->
+
+  <target name="compile-tests" 
+          depends="junit-present, compile" 
+          description="Compile the test code" 
+          if="junit.present">
+    <mkdir dir="${maven.build.testOutputDir}"/>
+    <javac destdir="${maven.build.testOutputDir}" 
+           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}">
+        <exclude name="**/*.java"/>
+      </fileset>
+    </copy>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Run all tests                                                          -->
+  <!-- ====================================================================== -->
+
+  <target name="test" 
+          depends="junit-present, compile-tests" 
+          if="junit.present" 
+          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}">
+        <fileset dir="${maven.build.testDir.0}">
+          <include name="**/*Test.java"/>
+          <exclude name="**/*Abstract*Test.java"/>
+        </fileset>
+      </batchtest>
+    </junit>
+  </target>
+
+  <target name="test-junit-present">
+    <available classname="junit.framework.Test" property="junit.present"/>
+  </target>
+
+  <target name="junit-present" 
+          depends="test-junit-present" 
+          unless="junit.present">
+    <echo>=================================== WARNING ===================================</echo>
+    <echo> Junit isn&apos;t 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" 
+             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" 
+             linksource="false" 
+             breakiterator="false"/>
+  </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"/>
+  </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-logging/commons-logging/1.1"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" 
+         dest="${maven.repo.local}/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" 
+         dest="${maven.repo.local}/commons-logging/commons-logging/1.1/commons-logging-1.1.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/backport-util-concurrent/backport-util-concurrent/3.0"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar" 
+         dest="${maven.repo.local}/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar" 
+         dest="${maven.repo.local}/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/org/subethamail/subethasmtp-wiser/1.2"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2-java14.jar" 
+         dest="${maven.repo.local}/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2-java14.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2-java14.jar" 
+         dest="${maven.repo.local}/org/subethamail/subethasmtp-wiser/1.2/subethasmtp-wiser-1.2-java14.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/saxpath/saxpath/1.0-FCS"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/saxpath/saxpath/1.0-FCS/saxpath-1.0-FCS.jar" 
+         dest="${maven.repo.local}/saxpath/saxpath/1.0-FCS/saxpath-1.0-FCS.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/saxpath/saxpath/1.0-FCS/saxpath-1.0-FCS.jar" 
+         dest="${maven.repo.local}/saxpath/saxpath/1.0-FCS/saxpath-1.0-FCS.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/xml-apis/xml-apis/1.0.b2"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/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="true" 
+         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="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/jaxen/jaxen/1.0-FCS"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/jaxen/jaxen/1.0-FCS/jaxen-1.0-FCS.jar" 
+         dest="${maven.repo.local}/jaxen/jaxen/1.0-FCS/jaxen-1.0-FCS.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/jaxen/jaxen/1.0-FCS/jaxen-1.0-FCS.jar" 
+         dest="${maven.repo.local}/jaxen/jaxen/1.0-FCS/jaxen-1.0-FCS.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/javax/servlet/servlet-api/2.3"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" 
+         dest="${maven.repo.local}/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" 
+         dest="${maven.repo.local}/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/javax/activation/activation/1.1"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/javax/activation/activation/1.1/activation-1.1.jar" 
+         dest="${maven.repo.local}/javax/activation/activation/1.1/activation-1.1.jar" 
+         usetimestamp="true" 
+         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="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/dom4j/dom4j/1.4"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/dom4j/dom4j/1.4/dom4j-1.4.jar" 
+         dest="${maven.repo.local}/dom4j/dom4j/1.4/dom4j-1.4.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/dom4j/dom4j/1.4/dom4j-1.4.jar" 
+         dest="${maven.repo.local}/dom4j/dom4j/1.4/dom4j-1.4.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/junit/junit/3.8.1"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/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="true" 
+         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="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/javax/mail/mail/1.4"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/javax/mail/mail/1.4/mail-1.4.jar" 
+         dest="${maven.repo.local}/javax/mail/mail/1.4/mail-1.4.jar" 
+         usetimestamp="true" 
+         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="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/log4j/log4j/1.2.12"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/log4j/log4j/1.2.12/log4j-1.2.12.jar" 
+         dest="${maven.repo.local}/log4j/log4j/1.2.12/log4j-1.2.12.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.jar" 
+         dest="${maven.repo.local}/log4j/log4j/1.2.12/log4j-1.2.12.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/relaxngDatatype/relaxngDatatype/20020414"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar" 
+         dest="${maven.repo.local}/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar" 
+         dest="${maven.repo.local}/relaxngDatatype/relaxngDatatype/20020414/relaxngDatatype-20020414.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/org/subethamail/subethasmtp-smtp/1.2"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2-java14.jar" 
+         dest="${maven.repo.local}/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2-java14.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2-java14.jar" 
+         dest="${maven.repo.local}/org/subethamail/subethasmtp-smtp/1.2/subethasmtp-smtp-1.2-java14.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/msv/msv/20020414"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/msv/msv/20020414/msv-20020414.jar" 
+         dest="${maven.repo.local}/msv/msv/20020414/msv-20020414.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/msv/msv/20020414/msv-20020414.jar" 
+         dest="${maven.repo.local}/msv/msv/20020414/msv-20020414.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/isorelax/isorelax/20020414"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/isorelax/isorelax/20020414/isorelax-20020414.jar" 
+         dest="${maven.repo.local}/isorelax/isorelax/20020414/isorelax-20020414.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/isorelax/isorelax/20020414/isorelax-20020414.jar" 
+         dest="${maven.repo.local}/isorelax/isorelax/20020414/isorelax-20020414.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/net/sf/retrotranslator/retrotranslator-runtime/1.2.1"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar" 
+         dest="${maven.repo.local}/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar" 
+         dest="${maven.repo.local}/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/logkit/logkit/1.0.1"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/logkit/logkit/1.0.1/logkit-1.0.1.jar" 
+         dest="${maven.repo.local}/logkit/logkit/1.0.1/logkit-1.0.1.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.jar" 
+         dest="${maven.repo.local}/logkit/logkit/1.0.1/logkit-1.0.1.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <mkdir dir="${maven.repo.local}/avalon-framework/avalon-framework/4.1.3"/>
+    <get src="http://people.apache.org/repo/m2-snapshot-repository/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar" 
+         dest="${maven.repo.local}/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+    <get src="http://repo1.maven.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar" 
+         dest="${maven.repo.local}/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar" 
+         usetimestamp="true" 
+         ignoreerrors="true"/>
+  </target>
+</project>