You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2012/08/19 17:32:56 UTC

svn commit: r1374772 - in /ant/ivy/ivyde/trunk/test/ivy-parent: ./ .classpath .project ivy-parent.xml ivy.xml ivysettings.xml src/

Author: hibou
Date: Sun Aug 19 15:32:56 2012
New Revision: 1374772

URL: http://svn.apache.org/viewvc?rev=1374772&view=rev
Log:
IVYDE-303 : test case project, seems the bug is fixed with Ivy trunk

Added:
    ant/ivy/ivyde/trunk/test/ivy-parent/   (with props)
    ant/ivy/ivyde/trunk/test/ivy-parent/.classpath   (with props)
    ant/ivy/ivyde/trunk/test/ivy-parent/.project   (with props)
    ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml   (with props)
    ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml   (with props)
    ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml   (with props)
    ant/ivy/ivyde/trunk/test/ivy-parent/src/

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Aug 19 15:32:56 2012
@@ -0,0 +1 @@
+bin

Added: ant/ivy/ivyde/trunk/test/ivy-parent/.classpath
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivy-parent/.classpath?rev=1374772&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/.classpath
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: ant/ivy/ivyde/trunk/test/ivy-parent/.project
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivy-parent/.project?rev=1374772&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivy-parent/.project (added)
+++ ant/ivy/ivyde/trunk/test/ivy-parent/.project Sun Aug 19 15:32:56 2012
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>ivydetest-ivy-parent</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.apache.ivyde.eclipse.ivynature</nature>
+	</natures>
+</projectDescription>

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/.project
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/.project
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/.project
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml?rev=1374772&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml (added)
+++ ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml Sun Aug 19 15:32:56 2012
@@ -0,0 +1,28 @@
+<!--
+   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.apache.ivyde" module="ivytest-ivy-parent-parent">
+    </info>
+    <configurations>
+        <conf name="default" />
+    </configurations>
+    <dependencies>
+        <dependency org="myorg" name="mymodule" rev="1.1" conf="default" />
+    </dependencies>
+</ivy-module>

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivy-parent.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml?rev=1374772&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml (added)
+++ ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml Sun Aug 19 15:32:56 2012
@@ -0,0 +1,29 @@
+<!--
+   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.apache.ivyde" module="ivytest-ivy-parent">
+        <extends organisation="org.apache.ivyde" module="ivytest-ivy-parent-parent" location="ivy-parent.xml" />
+        <description>
+            Project with an ivy.xml requiring a parent ivy file
+        </description>
+    </info>
+    <configurations>
+        <conf name="default" />
+    </configurations>
+</ivy-module>

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivy.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml?rev=1374772&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml (added)
+++ ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml Sun Aug 19 15:32:56 2012
@@ -0,0 +1,28 @@
+<!--
+   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>
+    <caches defaultCacheDir="${ivy.settings.dir}/../cache-fakerepo" useOrigin="false" />
+    <settings defaultResolver="fakerepo" checkUpToDate="false" />
+    <resolvers>
+        <filesystem name="fakerepo">
+            <ivy pattern="${ivy.settings.dir}/../fakerepo/[organisation]/[module]/ivy-[revision].xml"/>
+            <artifact pattern="${ivy.settings.dir}/../fakerepo/[organisation]/[module]/[type]s/[artifact]-[revision].[ext]"/>
+        </filesystem>
+    </resolvers>
+</ivysettings>

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: ant/ivy/ivyde/trunk/test/ivy-parent/ivysettings.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml