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 2008/09/19 21:32:32 UTC

svn commit: r697198 - in /ant/ivy/ivyde/trunk/test/include-properties: ./ .classpath .project ivy.properties ivy.xml ivysettings.xml src/

Author: hibou
Date: Fri Sep 19 12:32:32 2008
New Revision: 697198

URL: http://svn.apache.org/viewvc?rev=697198&view=rev
Log:
IVYDE-90: a test to reproduce the bug

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

Propchange: ant/ivy/ivyde/trunk/test/include-properties/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Sep 19 12:32:32 2008
@@ -0,0 +1,2 @@
+bin
+

Added: ant/ivy/ivyde/trunk/test/include-properties/.classpath
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/include-properties/.classpath?rev=697198&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/include-properties/.classpath (added)
+++ ant/ivy/ivyde/trunk/test/include-properties/.classpath Fri Sep 19 12:32:32 2008
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?ivyXmlPath=ivy.xml&amp;confs=*&amp;ivySettingsPath=file%3A%2F%2F.%2Fivysettings.xml&amp;acceptedTypes=jar&amp;sourceTypes=source&amp;javadocTypes=javadoc&amp;sourceSuffixes=-source%2C-sources%2C-src&amp;javadocSuffixes=-javadoc%2C-javadocs%2C-doc%2C-docs&amp;doRetrieve=false&amp;retrievePattern=lib%2F%5Bconf%5D%2F%5Bartifact%5D.%5Bext%5D&amp;alphaOrder=false"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: ant/ivy/ivyde/trunk/test/include-properties/.project
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/include-properties/.project?rev=697198&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/include-properties/.project (added)
+++ ant/ivy/ivyde/trunk/test/include-properties/.project Fri Sep 19 12:32:32 2008
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>ivydetest-include-properties</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>
+	</natures>
+</projectDescription>

Added: ant/ivy/ivyde/trunk/test/include-properties/ivy.properties
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/include-properties/ivy.properties?rev=697198&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/include-properties/ivy.properties (added)
+++ ant/ivy/ivyde/trunk/test/include-properties/ivy.properties Fri Sep 19 12:32:32 2008
@@ -0,0 +1 @@
+mymodule.version=1.1
\ No newline at end of file

Propchange: ant/ivy/ivyde/trunk/test/include-properties/ivy.properties
------------------------------------------------------------------------------
    svn:eol-style = native

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

Added: ant/ivy/ivyde/trunk/test/include-properties/ivy.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/include-properties/ivy.xml?rev=697198&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/include-properties/ivy.xml (added)
+++ ant/ivy/ivyde/trunk/test/include-properties/ivy.xml Fri Sep 19 12:32:32 2008
@@ -0,0 +1,30 @@
+<!--
+   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-include-properties">
+		<description>
+		</description>
+	</info>
+	<configurations>
+		<conf name="default" />
+	</configurations>
+	<dependencies>
+		<dependency org="myorg" name="mymodule" rev="${mymodule.version}" conf="default" />
+	</dependencies>
+</ivy-module>

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

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

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

Added: ant/ivy/ivyde/trunk/test/include-properties/ivysettings.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/include-properties/ivysettings.xml?rev=697198&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/include-properties/ivysettings.xml (added)
+++ ant/ivy/ivyde/trunk/test/include-properties/ivysettings.xml Fri Sep 19 12:32:32 2008
@@ -0,0 +1,11 @@
+<ivysettings>
+	<properties file="ivy.properties" />
+    <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/include-properties/ivysettings.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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

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