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 2011/04/03 16:14:25 UTC

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

Author: hibou
Date: Sun Apr  3 14:14:25 2011
New Revision: 1088307

URL: http://svn.apache.org/viewvc?rev=1088307&view=rev
Log:
IVYDE-267
 - test project to test the feature

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

Propchange: ant/ivy/ivyde/trunk/test/ivyde-namespace/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Apr  3 14:14:25 2011
@@ -0,0 +1 @@
+bin

Added: ant/ivy/ivyde/trunk/test/ivyde-namespace/.classpath
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivyde-namespace/.classpath?rev=1088307&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivyde-namespace/.classpath (added)
+++ ant/ivy/ivyde/trunk/test/ivyde-namespace/.classpath Sun Apr  3 14:14:25 2011
@@ -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/?project=ivydetest-ivyde-namespace&amp;ivyXmlPath=ivy.xml&amp;confs=*&amp;ivySettingsPath=%24%7Bworkspace_loc%3Aivydetest-ivyde-namespace%2Fivysettings.xml%7D&amp;loadSettingsOnDemand=false&amp;propertyFiles=&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;alphaOrder=false&amp;resolveInWorkspace=false&amp;resolveBeforeLaunch=false&amp;retrievedClasspath=false&amp;mapIfOnlyOneSource=false&amp;mapIfOnlyOneJavadoc=false&amp;useExtendedResolveId=false"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: ant/ivy/ivyde/trunk/test/ivyde-namespace/.project
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivyde-namespace/.project?rev=1088307&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivyde-namespace/.project (added)
+++ ant/ivy/ivyde/trunk/test/ivyde-namespace/.project Sun Apr  3 14:14:25 2011
@@ -0,0 +1,36 @@
+<?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.    
+-->
+<projectDescription>
+	<name>ivydetest-ivyde-namespace</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/ivyde-namespace/.project
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: ant/ivy/ivyde/trunk/test/ivyde-namespace/ivy.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivyde-namespace/ivy.xml?rev=1088307&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivyde-namespace/ivy.xml (added)
+++ ant/ivy/ivyde/trunk/test/ivyde-namespace/ivy.xml Sun Apr  3 14:14:25 2011
@@ -0,0 +1,31 @@
+<!--
+   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-ivyde-namespace">
+        <description>
+            Project using the ivyde namespace in the ivy.xml
+        </description>
+    </info>
+    <configurations>
+        <conf name="default" />
+    </configurations>
+    <dependencies>
+        <dependency org="myorg" name="ivydens" rev="1.1" conf="default" />
+    </dependencies>
+</ivy-module>

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

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

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

Added: ant/ivy/ivyde/trunk/test/ivyde-namespace/ivysettings.xml
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/ivyde-namespace/ivysettings.xml?rev=1088307&view=auto
==============================================================================
--- ant/ivy/ivyde/trunk/test/ivyde-namespace/ivysettings.xml (added)
+++ ant/ivy/ivyde/trunk/test/ivyde-namespace/ivysettings.xml Sun Apr  3 14:14:25 2011
@@ -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" />
+    <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/ivyde-namespace/ivysettings.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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

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