Repository: maven-resolver
Updated Branches:
  refs/heads/ant-tasks-folder [created] a088cdfca


http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Install/ant.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Install/ant.xml 
b/src/test/resources/ant/Install/ant.xml
deleted file mode 100644
index a4bd6eb..0000000
--- a/src/test/resources/ant/Install/ant.xml
+++ /dev/null
@@ -1,71 +0,0 @@
-<?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.
--->
-
-<!DOCTYPE project [
-       <!ENTITY common SYSTEM "../common.xml">
-]>
-
-<project xmlns:repo="antlib:org.apache.maven.resolver.ant">
-
-  &common;
-
-  <repo:pom file="${project.dir}/dummy-pom.xml" id="pom"/>
-  <repo:artifact classifier="ant" file="${project.dir}/ant.xml" id="ant"/>
-
-  <target name="setUp">
-    <touch file="${project.dir}/dummy-pom.xml"/>
-    <touch file="${project.dir}/other-pom.xml"/>
-    <touch file="${project.dir}/ant.xml"/>
-  </target>
-
-  <target name="testInstallGlobalPom" depends="setUp">
-    <repo:pom file="${project.dir}/dummy-pom.xml"/>
-    <repo:install/>
-  </target>
-
-  <target name="testInstallOverrideGlobalPom" depends="setUp">
-    <repo:pom file="${project.dir}/dummy-pom.xml"/>
-    <repo:install>
-      <pom file="${project.dir}/other-pom.xml"/>
-    </repo:install>
-  </target>
-
-  <target name="testInstallOverrideGlobalPomByRef" depends="setUp">
-    <repo:pom file="${project.dir}/dummy-pom.xml"/>
-    <repo:pom file="${project.dir}/other-pom.xml" id="other"/>
-    <repo:install/>
-    <repo:install pomref="other"/>
-  </target>
-
-  <target name="testDefaultRepo" depends="setUp">
-    <repo:install pomref="pom">
-      <repo:artifact refid="ant"/>
-    </repo:install>
-  </target>
-
-  <target name="testCustomRepo" depends="setUp">
-    <repo:localrepo dir="${build.dir}/local-repo-custom" />
-    <repo:install pomref="pom">
-      <repo:artifact refid="ant"/>
-    </repo:install>
-  </target>
-
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Install/dummy-pom.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Install/dummy-pom.xml 
b/src/test/resources/ant/Install/dummy-pom.xml
deleted file mode 100644
index 0041f8c..0000000
--- a/src/test/resources/ant/Install/dummy-pom.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?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.
--->
-
-<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/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>test</groupId>
-  <artifactId>dummy</artifactId>
-  <version>0.1-SNAPSHOT</version>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Install/other-pom.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Install/other-pom.xml 
b/src/test/resources/ant/Install/other-pom.xml
deleted file mode 100644
index 626bede..0000000
--- a/src/test/resources/ant/Install/other-pom.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?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.
--->
-
-<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/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>test</groupId>
-  <artifactId>other</artifactId>
-  <version>0.1-SNAPSHOT</version>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Reactor/ant.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Reactor/ant.xml 
b/src/test/resources/ant/Reactor/ant.xml
deleted file mode 100644
index 7b7976a..0000000
--- a/src/test/resources/ant/Reactor/ant.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-<?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.
--->
-
-<!DOCTYPE project [
-       <!ENTITY common SYSTEM "../common.xml">
-]>
-
-<project xmlns:repo="antlib:org.apache.maven.resolver.ant">
-
-  &common;
-  
-  <target name="testPom">
-    <repo:pom file="${project.dir}/pom1.xml"/>
-  </target>
-  
-  <target name="testArtifact">
-    <repo:pom file="${project.dir}/pom1.xml" id="pom"/>
-    <repo:artifact pomref="pom" file="${project.dir}/pom1.xml"/>
-  </target>
-  
-  <target name="testArtifactInMemoryPom">
-    <repo:pom groupid="test" artifactid="test" version="0.1-SNAPSHOT" 
id="pom"/>
-    <repo:artifact pomref="pom" file="${project.dir}/pom1.xml"/>
-  </target>
-
-  <target name="testResolveArtifact">
-    <repo:pom file="${project.dir}/pom1.xml" id="pom"/>
-    <repo:artifact pomref="pom" file="${project.dir}/pom1.xml" type="jar"/>
-    <repo:pom file="${project.dir}/pom2.xml" id="pom2"/>
-
-    <repo:resolve>
-      <dependencies pomref="pom2"/>
-      <properties prefix="resolve"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveArtifactInMemoryPom">
-    <repo:pom groupid="test" artifactid="test" version="0.1-SNAPSHOT" 
id="pom"/>
-    <repo:artifact pomref="pom" file="${project.dir}/pom1.xml" type="jar"/>
-    <repo:pom file="${project.dir}/pom2.xml" id="pom2"/>
-
-    <repo:resolve>
-      <dependencies pomref="pom2"/>
-      <properties prefix="resolve"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveVersionRange">
-    <repo:pom file="${project.dir}/pom1.xml" id="pom"/>
-    <repo:artifact pomref="pom" file="${project.dir}/pom1.xml" type="jar"/>
-
-    <repo:resolve>
-      <dependencies>
-        <dependency groupId="test" artifactId="test" version="[0,)"/>
-      </dependencies>
-      <properties prefix="resolve"/>
-    </repo:resolve>
-  </target>
-
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Reactor/pom1.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Reactor/pom1.xml 
b/src/test/resources/ant/Reactor/pom1.xml
deleted file mode 100644
index 84496ca..0000000
--- a/src/test/resources/ant/Reactor/pom1.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?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.
--->
-
-<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/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>test</groupId>
-  <artifactId>test</artifactId>
-  <version>0.1-SNAPSHOT</version>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Reactor/pom2.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Reactor/pom2.xml 
b/src/test/resources/ant/Reactor/pom2.xml
deleted file mode 100644
index e0d5be6..0000000
--- a/src/test/resources/ant/Reactor/pom2.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?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.
--->
-
-<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/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>test</groupId>
-  <artifactId>test2</artifactId>
-  <version>0.1-SNAPSHOT</version>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-
-  <dependencies>
-    <dependency>
-      <groupId>test</groupId>
-      <artifactId>test</artifactId>
-      <version>0.1-SNAPSHOT</version>
-    </dependency>
-  </dependencies>
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Resolve/ant.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Resolve/ant.xml 
b/src/test/resources/ant/Resolve/ant.xml
deleted file mode 100644
index 4565ea7..0000000
--- a/src/test/resources/ant/Resolve/ant.xml
+++ /dev/null
@@ -1,122 +0,0 @@
-<?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.
--->
-
-<!DOCTYPE project [
-       <!ENTITY common SYSTEM "../common.xml">
-]>
-
-<project xmlns:repo="antlib:org.apache.maven.resolver.ant">
-
-  &common;
-
-  <repo:remoterepo id="remote" url="http://repo1.maven.org/maven2"; 
type="default" releases="true" snapshots="true" updates="always" 
checksums="fail"/>
-  <repo:remoterepos id="resolver.repositories">
-    <repo:remoterepo refid="remote"/>
-  </repo:remoterepos>
-
-  <target name="setUp">
-    <delete dir="${build.dir}/resolvetest-local-repo"/>
-  </target>
-
-  <target name="testResolveGlobalPom">
-    <repo:pom file="${project.dir}/pom.xml"/>
-    <repo:resolve>
-      <properties prefix="test.resolve.path" classpath="compile"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveOverrideGlobalPom">
-    <repo:pom file="${project.dir}/dummy-pom.xml"/>
-    <repo:resolve>
-      <dependencies>
-        <pom file="${project.dir}/pom.xml"/>
-      </dependencies>
-      <properties prefix="test.resolve.path" classpath="compile"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveGlobalPomIntoOtherLocalRepo">
-    <repo:localrepo dir="${build.dir}/local-repo-custom"/>
-    <repo:pom file="${project.dir}/pom.xml"/>
-    <repo:resolve>
-      <properties prefix="test.resolve.path" classpath="compile"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveCustomFileLayout">
-    <repo:pom file="${project.dir}/pom.xml"/>
-    <repo:resolve>
-      <files dir="${build.dir}/resolve-custom-layout/" 
layout="{groupId}/{artifactId}/{groupIdDirs}/{extension}"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveAttachments">
-    <repo:resolve>
-      <dependencies>
-        <dependency groupid="org.eclipse.aether" artifactid="aether-impl" 
version="0.9.0.v20140226" />
-      </dependencies>
-      <files dir="${build.dir}/resolve-attachments/" 
layout="javadoc/{groupId}-{artifactId}-{classifier}.{extension}" 
attachments="javadoc"/>
-      <files dir="${build.dir}/resolve-attachments/" 
layout="sources/{groupId}-{artifactId}-{classifier}.{extension}" 
attachments="sources"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolvePath">
-    <repo:pom file="${project.dir}/pom.xml"/>
-    <repo:resolve>
-      <path refid="out" classpath="compile"/>
-    </repo:resolve>
-    <echo>${tostring:out}</echo>
-  </target>
-
-  <target name="testResolveDepsFromFile">
-    <repo:resolve>
-      <dependencies file="${project.dir}/dependencies.txt">
-        <exclusion coords="org.eclipse.aether:aether-api"/>
-      </dependencies>
-      <properties prefix="test.resolve.path" classpath="runtime"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveNestedDependencyCollections">
-    <repo:resolve>
-      <dependencies>
-        <dependencies>
-          <dependency groupid="org.eclipse.aether" artifactid="aether-spi" 
version="0.9.0.v20140226" />
-        </dependencies>
-        <dependencies>
-          <dependency groupid="org.eclipse.aether" artifactid="aether-util" 
version="0.9.0.v20140226" />
-        </dependencies>
-        <exclusion coords="org.eclipse.aether:aether-api"/>
-      </dependencies>
-      <properties prefix="test.resolve.path" classpath="runtime"/>
-    </repo:resolve>
-  </target>
-
-  <target name="testResolveResourceCollectionOnly">
-    <repo:resolve>
-      <dependencies>
-        <dependency groupid="org.eclipse.aether" artifactid="aether-spi" 
version="0.9.0.v20140226" />
-      </dependencies>
-      <files refid="files"/>
-    </repo:resolve>
-  </target>
-
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Resolve/dependencies.txt
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Resolve/dependencies.txt 
b/src/test/resources/ant/Resolve/dependencies.txt
deleted file mode 100644
index 8254bb3..0000000
--- a/src/test/resources/ant/Resolve/dependencies.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-#
-# Copyright (c) 2014 Sonatype, Inc.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-
-# each line specifies one dependency
-org.eclipse.aether:aether-spi:0.9.0.v20140226:runtime  # a comment
-

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Resolve/dummy-pom.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Resolve/dummy-pom.xml 
b/src/test/resources/ant/Resolve/dummy-pom.xml
deleted file mode 100644
index 75bc291..0000000
--- a/src/test/resources/ant/Resolve/dummy-pom.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?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.
--->
-
-<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/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <groupId>test</groupId>
-  <artifactId>test</artifactId>
-  <version>0.1-SNAPSHOT</version>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Resolve/pom.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Resolve/pom.xml 
b/src/test/resources/ant/Resolve/pom.xml
deleted file mode 100644
index 392974d..0000000
--- a/src/test/resources/ant/Resolve/pom.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<?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.
--->
-
-<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/xsd/maven-4.0.0.xsd";>
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.sonatype.forge</groupId>
-    <artifactId>forge-parent</artifactId>
-    <version>10</version>
-  </parent>
-
-  <groupId>org.eclipse.aether</groupId>
-  <artifactId>aether-ant-tasks</artifactId>
-  <version>1.0-SNAPSHOT</version>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <aetherVersion>0.9.0.M3</aetherVersion>
-  </properties>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-api</artifactId>
-      <version>${aetherVersion}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.eclipse.aether</groupId>
-      <artifactId>aether-system</artifactId>
-      <version>${aetherVersion}</version>
-      <type>pom</type>
-      <scope>system</scope>
-      <systemPath>${basedir}/pom.xml</systemPath>
-    </dependency>
-  </dependencies>
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/Settings/ant.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/Settings/ant.xml 
b/src/test/resources/ant/Settings/ant.xml
deleted file mode 100644
index 8c1f79a..0000000
--- a/src/test/resources/ant/Settings/ant.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?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.
--->
-
-<!DOCTYPE project [
-       <!ENTITY common SYSTEM "../common.xml">
-]>
-
-<project xmlns:repo="antlib:org.apache.maven.resolver.ant">
-
-  &common;
-
-  <target name="setUp">
-    <!-- touch file="${project.dir}/common.xml"/-->
-  </target>
-
-  <target name="testUserSettings" depends="setUp">
-    <repo:settings file="userSettings.xml"/>
-  </target>
-
-  <target name="testGlobalSettings" depends="setUp">
-    <repo:settings globalfile="globalSettings.xml"/>
-  </target>
-
-  <target name="testBothSettings" depends="setUp">
-    <repo:settings file="userSettings.xml" globalfile="globalSettings.xml"/>
-  </target>
-
-</project>

http://git-wip-us.apache.org/repos/asf/maven-resolver/blob/a088cdfc/src/test/resources/ant/common.xml
----------------------------------------------------------------------
diff --git a/src/test/resources/ant/common.xml 
b/src/test/resources/ant/common.xml
deleted file mode 100644
index 02c0a57..0000000
--- a/src/test/resources/ant/common.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
-  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.
--->
-
-<taskdef uri="antlib:org.apache.maven.resolver.ant" 
resource="org/apache/maven/resolver/ant/antlib.xml"/>

Reply via email to