You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2007/01/27 23:58:28 UTC

svn commit: r500661 [2/3] - in /geronimo/sandbox/build-support/harness: ./ branches/ tags/ trunk/ trunk/bin/ trunk/lib/ trunk/lib/buildharness/ trunk/lib/buildharness/commands/ trunk/lib/buildharness/commands/tck/ trunk/lib/buildharness/util/ trunk/too...

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,232 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant</artifactId>
+  <version>1.7.0</version>
+  <name>org.apache.tools.ant</name>
+  <description>Apache Ant</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant-launcher</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <!-- the implementation jar of the xerces jar will be used by ant to parse
+      XML files, particularly the build files, if the JDK does not provide a parser
+        xercesImpl.jar is provided with ant -->
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.8.1</version>
+      <optional>true</optional>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <!-- xml-apis contains the org.w3c.dom package 
+      since ant is using DOM APIS to parse the XML build file and do other XML related activities
+      xml-apis is a compile time dependency
+      a version of xml-apis.jar is delivered with ant -->
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>1.3.03</version>
+      <optional>true</optional>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <filters>
+      <filter>../../../../target/ant/.build.timestamp.properties</filter>
+    </filters>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration> </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>create-timestamp-file</id>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <tstamp/>
+                <mkdir dir="${project.build.directory}"/>
+                <touch file="${project.build.directory}/.build.timestamp.properties"/>
+                <echo file="${project.build.directory}/.build.timestamp.properties" append="false"
+                  message="TODAY=${TODAY}"/>
+              </tasks>
+            </configuration>
+          </execution>
+          <execution>
+            <id>delete-timestamp-file</id>
+            <phase>clean</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <delete file="${project.build.directory}/.build.timestamp.properties"/>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <excludes>
+            <exclude>org/apache/tools/ant/taskdefs/optional/**</exclude>
+            <exclude>org/apache/tools/ant/filters/util/JavaClassHelper*</exclude>
+            <exclude>org/apache/tools/ant/types/optional/**</exclude>
+            <exclude>org/apache/tools/ant/types/resolver/**</exclude>
+            <exclude>org/apache/tools/ant/util/depend/**</exclude>
+            <exclude>org/apache/tools/ant/util/optional/**</exclude>
+            <exclude>org/apache/tools/ant/util/Script*</exclude>
+            <exclude>org/apache/tools/ant/listener/Log4jListener*</exclude>
+            <exclude>org/apache/tools/ant/listener/CommonsLoggingListener*</exclude>
+            <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
+            <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
+            <exclude>org/apache/tools/ant/util/regexp/Jdk14Regexp*</exclude>
+            <exclude>org/apache/tools/ant/taskdefs/email/MimeMailer*</exclude>
+            <exclude>org/apache/tools/ant/launch/**</exclude>
+          </excludes>
+          <testExcludes>
+            <exclude>org/apache/tools/ant/taskdefs/optional/**</exclude>
+            <exclude>org/apache/tools/ant/filters/util/JavaClassHelper*</exclude>
+            <exclude>org/apache/tools/ant/types/optional/**</exclude>
+            <exclude>org/apache/tools/ant/types/resolver/**</exclude>
+            <exclude>org/apache/tools/ant/util/depend/**</exclude>
+            <exclude>org/apache/tools/ant/util/optional/**</exclude>
+            <exclude>org/apache/tools/ant/util/Script*</exclude>
+            <exclude>org/apache/tools/ant/listener/Log4jListener*</exclude>
+            <exclude>org/apache/tools/ant/listener/CommonsLoggingListener*</exclude>
+            <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
+            <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
+            <exclude>org/apache/tools/ant/util/regexp/Jdk14Regexp*</exclude>
+            <exclude>org/apache/tools/ant/taskdefs/email/MimeMailer*</exclude>
+            <exclude>org/apache/tools/ant/launch/**</exclude>
+            <exclude>org/apache/tools/ant/taskdefs/StyleTest*</exclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <omitBasedir>true</omitBasedir>
+          <systemProperties>
+            <property>
+              <name>ant.home</name>
+              <value>${env.ANT_HOME}</value>
+            </property>
+            <property>
+              <name>build.tests</name>
+              <value>../../../../target/ant/testcases</value>
+            </property>
+            <property>
+              <name>build.tests.value</name>
+              <value>../../../../target/ant/testcases</value>
+            </property>
+            <property>
+              <name>offline</name>
+              <value>true</value>
+            </property>
+            <property>
+              <name>root</name>
+              <value>../../../..</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+    </plugins>
+    <resources>
+      <resource>
+        <directory>../../../../src/main</directory>
+        <filtering>true</filtering>
+        <includes>
+          <include>org/apache/tools/ant/taskdefs/default.properties</include>
+          <include>org/apache/tools/ant/types/default.properties</include>
+          <include>org/apache/tools/ant/taskdefs/default.properties</include>
+          <include>org/apache/tools/ant/types/conditions/antlib.xml</include>
+          <include>org/apache/tools/ant/defaultManifest.mf</include>
+          <include>org/apache/tools/ant/version.txt</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>../../../../src/resources</directory>
+        <filtering>true</filtering>
+        <includes>
+          <include>**/antlib.xml</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>../../../../docs</directory>
+        <filtering>false</filtering>
+        <includes>
+          <include>images/ant_logo_large.gif</include>
+        </includes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>../../../../src/etc/testcases</directory>
+        <filtering>true</filtering>
+      </testResource>
+      <testResource>
+        <directory>../../../../src/main</directory>
+        <filtering>true</filtering>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/tests/junit</testSourceDirectory>
+    <outputDirectory>../../../../target/ant/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/ant/testcases</testOutputDirectory>
+    <directory>../../../../target/ant</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+0153222de881bd75a1a03c972966f98e

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+6c896738d6345ed0812c34b4392867c210dad051

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,75 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-antlr</artifactId>
+  <version>1.7.0</version>
+  <description>antlr specific task.
+    The implementation forks a java process, therefore the antlr jar file is only needed at runtime</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <optional>true</optional>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <!-- add a dependency with antlr 2.7.2 consistent with libraries.properties antlr 2.7.6 is also available on ibiblio-->
+      <groupId>antlr</groupId>
+      <artifactId>antlr</artifactId>
+      <version>2.7.2</version>
+      <optional>true</optional>
+      <scope>runtime</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/taskdefs/optional/ANTLR*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+a63cde1195ea76b499847d8bf698edba

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+f51de13649550f94e9bc2f5a03b76dee3c7ecee9

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-antlr.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,71 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-apache-bcel</artifactId>
+  <version>1.7.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>bcel</groupId>
+      <artifactId>bcel</artifactId>
+      <version>5.1</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/tfilters/util/JavaClassHelper*</include>
+            <include>org/apache/tools/ant/tutil/depend/bcel/*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+7cb4be931a57998d31b68098c5d6053e

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+d0e1e2a885a6faf18ef67bd0b9e7c21f5e4e41e7

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bcel.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,74 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-apache-bsf</artifactId>
+  <version>1.7.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>bsf</groupId>
+      <artifactId>bsf</artifactId>
+      <version>2.4.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/taskdefs/optional/Script*</include>
+            <include>org/apache/tools/ant/taskdefs/optional/script/**</include>
+            <include>org/apache/tools/ant/types/optional/*Script*</include>
+            <include>org/apache/tools/ant/util/Script*</include>
+            <include>org/apache/tools/ant/util/optional/Script*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+0790d6a5f5bd6d64c3badaada94f5d29

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+397dfecef5f4f2842bf9c00e3485d9afe704d479

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-bsf.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,69 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-apache-log4j</artifactId>
+  <version>1.7.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.13</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/listener/Log4jListener*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+dafe68897be94f720f07fd9d217ea6c3

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+b459c5796ed619217152fb18b41c17725956cd0c

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-log4j.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,71 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-apache-oro</artifactId>
+  <version>1.7.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>oro</groupId>
+      <artifactId>oro</artifactId>
+      <version>2.0.8</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/util/regexp/JakartaOro*</include>
+            <include>org/apache/tools/ant/taskdefs/optional/perforce/*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+d6e74dbe99c21b5664894d42fd3d0a1a

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+2da5692988fb4f6c3eff3f7752889d280b930fb7

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-oro.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,70 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-apache-regexp</artifactId>
+  <version>1.7.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>regexp</groupId>
+      <artifactId>regexp</artifactId>
+      <version>1.3</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/util/regexp/JakartaRegexp*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+  
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+5167f94dce6cc78ce5e2b39e37dee499

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+78dc4fee641b98ebdf085030dacd311c5217e2d9

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-regexp.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,69 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-apache-resolver</artifactId>
+  <version>1.7.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>xml-resolver</groupId>
+      <artifactId>xml-resolver</artifactId>
+      <version>1.1</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/types/resolver/**</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+22f74f57403ad26242704320476cdfd2

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+8c61f8b318cb70927513fe440fa178c396185936

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-apache-resolver.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,70 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-commons-logging</artifactId>
+  <version>1.7.0</version>
+  <description>Ant Listener based on commons-logging</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging-api</artifactId>
+      <version>1.0.4</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/tlistener/CommonsLoggingListener*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+aaed374c26114170486b2b60bf987739

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+82e62a4be2cdfa80658762ecdd94dfb2fed0d0c6

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-logging.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,72 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-commons-net</artifactId>
+  <version>1.7.0</version>
+  <description>ftp, rexec and telnet tasks</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-net</groupId>
+      <artifactId>commons-net</artifactId>
+      <version>1.4.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/taskdefs/optional/net/FTP*</include>
+            <include>org/apache/tools/ant/taskdefs/optional/net/RExec*</include>
+            <include>org/apache/tools/ant/taskdefs/optional/net/TelnetTask*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+c3b3ef9357dc32edf675d2dc5b8fa8a5

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+092cc31ddab3cd550ed0a5b384baf97218c15d98

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-commons-net.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,81 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-jai</artifactId>
+  <version>1.7.0</version>
+  <description>image task and corresponding types.
+  jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided
+    the download URL is http://java.sun.com/products/java-media/jai/
+  </description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.media</groupId>
+      <artifactId>jai-core</artifactId>
+      <version>1.1.2_01</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>jai</groupId>
+      <artifactId>jai-codec</artifactId>
+      <version>1.1.2.1</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant/taskdefs/optional/image/*</include>
+            <include>org/apache/tools/ant/types/optional/image/*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+bfe805489b52e51ce3a929b916a7b780

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+4e6db677ed9162d6546d5057046491b4454285ff

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jai.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,78 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-javamail</artifactId>
+  <version>1.7.0</version>
+  <description>implementation of the mail task based on javamail.
+    Required to send emails to SMTP servers using user/password combinations
+  or to send mail over SSL</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>activation</artifactId>
+      <version>1.1</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies> 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant//taskdefs/email/MimeMailer*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+0678ec4770bd91b32f80b5fb457b7634

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+f8cebf57009c4d99a1bf2b5223015ed320baf1de

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-javamail.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,72 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-jdepend</artifactId>
+  <version>1.7.0</version>
+  <description>task jdepend invoking the jdepend parser. There is also a version 2.9.1 of the
+    jdepend parser available on the maven repository</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>jdepend</groupId>
+      <artifactId>jdepend</artifactId>
+      <version>2.7</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant//taskdefs/optional/jdepend/*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+064f0e995accca15150223c1a0ae8666

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+0277822a1cac5cdabccefcb0473b6d31c1780293

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jdepend.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,71 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-jmf</artifactId>
+  <version>1.7.0</version>
+  <description>contains the sound task and a soundplayer listener
+    download the dependency from http://java.sun.com/products/java-media/jmf/</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.media</groupId>
+      <artifactId>jmf</artifactId>
+      <version>2.1.1e</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant//taskdefs/optional/sound/*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+  </project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+ce526c923382726fc57f5f7afaa69952

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+c50b01f6634863439f9877c607807f5ccaba4a41

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jmf.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom Sat Jan 27 14:58:22 2007
@@ -0,0 +1,71 @@
+<?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
+
+       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.
+-->
+<!--
+  This POM has been created manually by the Ant Development Team.
+  Please contact us if you are not satisfied with the data contained in this POM.
+  URL : http://ant.apache.org
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.apache.ant</groupId>
+    <artifactId>ant-parent</artifactId>
+    <relativePath>../pom.xml</relativePath>
+    <version>1.7.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.ant</groupId>
+  <artifactId>ant-jsch</artifactId>
+  <version>1.7.0</version>
+  <description>contains the sshexec and scp tasks
+  jsch 0.1.29 might not be available from maven</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.7.0</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.jcraft</groupId>
+      <artifactId>jsch</artifactId>
+      <version>0.1.29</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.2</source>
+          <target>1.2</target>
+          <includes>
+            <include>org/apache/tools/ant//taskdefs/optional/ssh/*</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+    <sourceDirectory>../../../../src/main</sourceDirectory>
+    <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+    <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+    <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+    <directory>../../../../target/${project.artifactId}</directory>
+  </build>
+</project>

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.md5
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.md5?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.md5 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.md5 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+1c1fdd8639840ec7c3b2744248b1fe29

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.sha1
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.sha1?view=auto&rev=500661
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.sha1 (added)
+++ geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch-1.7.0.pom.sha1 Sat Jan 27 14:58:22 2007
@@ -0,0 +1 @@
+7e57abd0e96480d055d19e7c2f80eaf5d0dbff84

Added: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch.jar
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch.jar?view=auto&rev=500661
==============================================================================
Binary file - no diff available.

Propchange: geronimo/sandbox/build-support/harness/trunk/tools/ant/lib/ant-jsch.jar
------------------------------------------------------------------------------
    svn:mime-type = application/java-archive