Author: maartenc
Date: Sun Apr  1 21:37:58 2012
New Revision: 1308202

URL: http://svn.apache.org/viewvc?rev=1308202&view=rev
Log:
Forgot to commit the test repository (IVY-1333)

Added:
    ant/ivy/core/trunk/test/repositories/IVY-1333/
    ant/ivy/core/trunk/test/repositories/IVY-1333/ivy.xml
    ant/ivy/core/trunk/test/repositories/IVY-1333/ivysettings.xml
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/1.0.0.m4/
    
ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/1.0.0.m4/ivy.xml
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/1.0/
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/1.0/ivy.xml
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/1.0/
    ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/1.0/ivy.xml

Added: ant/ivy/core/trunk/test/repositories/IVY-1333/ivy.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/repositories/IVY-1333/ivy.xml?rev=1308202&view=auto
==============================================================================
--- ant/ivy/core/trunk/test/repositories/IVY-1333/ivy.xml (added)
+++ ant/ivy/core/trunk/test/repositories/IVY-1333/ivy.xml Sun Apr  1 21:37:58 
2012
@@ -0,0 +1,29 @@
+<?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.    
+-->
+<ivy-module version="1.0"> 
+       <info organisation="org" module="toplevel" revision="1.0"/>
+       <publications/>
+       <dependencies>
+               <dependency name="dep1" org="org" rev="1.0"/>
+               <dependency name="dep2" org="org" rev="1.0"/>
+
+               <dependency name="badArtifact" org="org" rev="1.0.0.+"/>
+       </dependencies>
+</ivy-module>

Added: ant/ivy/core/trunk/test/repositories/IVY-1333/ivysettings.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/repositories/IVY-1333/ivysettings.xml?rev=1308202&view=auto
==============================================================================
--- ant/ivy/core/trunk/test/repositories/IVY-1333/ivysettings.xml (added)
+++ ant/ivy/core/trunk/test/repositories/IVY-1333/ivysettings.xml Sun Apr  1 
21:37:58 2012
@@ -0,0 +1,27 @@
+<!--
+   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.    
+-->
+<ivysettings>
+       <resolvers>
+               <filesystem name="local">
+                       <ivy 
pattern="${ivy.settings.dir}/[organisation]/[module]/[revision]/ivy.xml" />
+                       <artifact 
pattern="${ivy.settings.dir}/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]"
 />
+               </filesystem>
+       </resolvers>
+       <settings defaultResolver="local" />
+</ivysettings>
\ No newline at end of file

Added: 
ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/1.0.0.m4/ivy.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/1.0.0.m4/ivy.xml?rev=1308202&view=auto
==============================================================================
--- 
ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/1.0.0.m4/ivy.xml 
(added)
+++ 
ant/ivy/core/trunk/test/repositories/IVY-1333/org/badArtifact/1.0.0.m4/ivy.xml 
Sun Apr  1 21:37:58 2012
@@ -0,0 +1,24 @@
+<?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.    
+-->
+<ivy-module xmlns:o="http://example.org/ivy/extra"; version="1.0">
+    <info organisation="org" module="badArtifact" revision="1.0.0.m4" 
o:a="58701"/>
+    <publications/>
+    <dependencies/>
+</ivy-module>

Added: ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/1.0/ivy.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/1.0/ivy.xml?rev=1308202&view=auto
==============================================================================
--- ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/1.0/ivy.xml (added)
+++ ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep1/1.0/ivy.xml Sun Apr  
1 21:37:58 2012
@@ -0,0 +1,27 @@
+<?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.    
+-->
+<ivy-module version="1.0"> 
+       <info organisation="org" module="dep1" revision="1.0"/>
+       <publications/>
+       <dependencies>
+               <dependency force="true" name="dep2" org="org" rev="1.0"/>
+               <dependency force="true" name="badArtifact" org="org" 
rev="1.0.0.+"/>
+       </dependencies>
+</ivy-module>

Added: ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/1.0/ivy.xml
URL: 
http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/1.0/ivy.xml?rev=1308202&view=auto
==============================================================================
--- ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/1.0/ivy.xml (added)
+++ ant/ivy/core/trunk/test/repositories/IVY-1333/org/dep2/1.0/ivy.xml Sun Apr  
1 21:37:58 2012
@@ -0,0 +1,26 @@
+<?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.    
+-->
+<ivy-module version="1.0">
+    <info organisation="org" module="dep2" revision="1.0"/>
+    <publications/>
+    <dependencies>
+        <dependency name="badArtifact" org="org" rev="1.0.0.m4"/>
+    </dependencies>
+</ivy-module>


Reply via email to