Author: maartenc
Date: Tue Oct 28 13:32:51 2008
New Revision: 708664
URL: http://svn.apache.org/viewvc?rev=708664&view=rev
Log:
FIX: inline resolve ignores the transitive attribute (IVY-958)
Added:
ant/ivy/core/branches/2.0.0-rc2/HEADER.html
Modified:
ant/ivy/core/branches/2.0.0-rc2/CHANGES.txt
ant/ivy/core/branches/2.0.0-rc2/doc/release-notes.html
ant/ivy/core/branches/2.0.0-rc2/src/java/org/apache/ivy/ant/IvyPostResolveTask.java
Modified: ant/ivy/core/branches/2.0.0-rc2/CHANGES.txt
URL:
http://svn.apache.org/viewvc/ant/ivy/core/branches/2.0.0-rc2/CHANGES.txt?rev=708664&r1=708663&r2=708664&view=diff
==============================================================================
--- ant/ivy/core/branches/2.0.0-rc2/CHANGES.txt (original)
+++ ant/ivy/core/branches/2.0.0-rc2/CHANGES.txt Tue Oct 28 13:32:51 2008
@@ -118,6 +118,7 @@
- FIX: Maven pom license has name as optional element (IVY-949)
- FIX: Ivy doesn't throw an error when the parent POM cannot be loaded
(IVY-931)
- FIX: Maven pom parser is not handling pom property ${project.parent.version}
(IVY-955)
+- FIX: inline resolve ignores the transitive attribute (IVY-958)
2.0.0-rc1
=====================================
Added: ant/ivy/core/branches/2.0.0-rc2/HEADER.html
URL:
http://svn.apache.org/viewvc/ant/ivy/core/branches/2.0.0-rc2/HEADER.html?rev=708664&view=auto
==============================================================================
--- ant/ivy/core/branches/2.0.0-rc2/HEADER.html (added)
+++ ant/ivy/core/branches/2.0.0-rc2/HEADER.html Tue Oct 28 13:32:51 2008
@@ -0,0 +1 @@
+<h2>WARNING: files available here are NOT an Apache approved release yet.</h2>
\ No newline at end of file
Modified: ant/ivy/core/branches/2.0.0-rc2/doc/release-notes.html
URL:
http://svn.apache.org/viewvc/ant/ivy/core/branches/2.0.0-rc2/doc/release-notes.html?rev=708664&r1=708663&r2=708664&view=diff
==============================================================================
--- ant/ivy/core/branches/2.0.0-rc2/doc/release-notes.html (original)
+++ ant/ivy/core/branches/2.0.0-rc2/doc/release-notes.html Tue Oct 28 13:32:51
2008
@@ -222,6 +222,7 @@
- FIX: Maven pom license has name as optional element (IVY-949)
- FIX: Ivy doesn't throw an error when the parent POM cannot be loaded
(IVY-931)
- FIX: Maven pom parser is not handling pom property ${project.parent.version}
(IVY-955)
+- FIX: inline resolve ignores the transitive attribute (IVY-958)
- DOCUMENTATION: Filesystem resolver: talks about "patterns" but does not
mention these must become absolute file paths (IVY-910)
</textarea>
Modified:
ant/ivy/core/branches/2.0.0-rc2/src/java/org/apache/ivy/ant/IvyPostResolveTask.java
URL:
http://svn.apache.org/viewvc/ant/ivy/core/branches/2.0.0-rc2/src/java/org/apache/ivy/ant/IvyPostResolveTask.java?rev=708664&r1=708663&r2=708664&view=diff
==============================================================================
---
ant/ivy/core/branches/2.0.0-rc2/src/java/org/apache/ivy/ant/IvyPostResolveTask.java
(original)
+++
ant/ivy/core/branches/2.0.0-rc2/src/java/org/apache/ivy/ant/IvyPostResolveTask.java
Tue Oct 28 13:32:51 2008
@@ -133,6 +133,7 @@
resolve.setInline(true);
resolve.setConf(conf);
resolve.setResolveId(resolveId);
+ resolve.setTransitive(isTransitive());
resolve.execute();
} else {
Message.verbose("inline resolve already done for " +
getOrganisation() + " "