Author: hibou
Date: Sun Aug 30 09:56:06 2009
New Revision: 809288
URL: http://svn.apache.org/viewvc?rev=809288&view=rev
Log:
IVYDE-188 : improve the test project so we can reproduce the bug
Added:
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
(with props)
Modified:
ant/ivy/ivyde/trunk/test/resolve-in-workspace/ (props changed)
ant/ivy/ivyde/trunk/test/resolve-in-workspace/ivysettings.xml
Propchange: ant/ivy/ivyde/trunk/test/resolve-in-workspace/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Aug 30 09:56:06 2009
@@ -0,0 +1 @@
+bin
Modified: ant/ivy/ivyde/trunk/test/resolve-in-workspace/ivysettings.xml
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/resolve-in-workspace/ivysettings.xml?rev=809288&r1=809287&r2=809288&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/test/resolve-in-workspace/ivysettings.xml (original)
+++ ant/ivy/ivyde/trunk/test/resolve-in-workspace/ivysettings.xml Sun Aug 30
09:56:06 2009
@@ -1,10 +1,15 @@
<ivysettings>
<caches defaultCacheDir="${ivy.settings.dir}/../cache-fakerepo"
useOrigin="false" />
- <settings defaultResolver="fakerepo" checkUpToDate="false" />
+ <settings defaultResolver="chain" 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>
+ <ibiblio name="ibiblio" m2compatible="true" />
+ <chain name="chain">
+ <resolver ref="fakerepo" />
+ <resolver ref="ibiblio" />
+ </chain>
</resolvers>
</ivysettings>
Added:
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java?rev=809288&view=auto
==============================================================================
---
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
(added)
+++
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
Sun Aug 30 09:56:06 2009
@@ -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.
+ *
+ */
+package org.apache.ivyde.test;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+public class Test {
+
+ private static final Log log = LogFactory.getLog(Test.class);
+
+}
Propchange:
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange:
ant/ivy/ivyde/trunk/test/resolve-in-workspace/src/org/apache/ivyde/test/Test.java
------------------------------------------------------------------------------
svn:mime-type = text/plain