Author: hibou
Date: Sat Aug 2 10:34:47 2008
New Revision: 682024
URL: http://svn.apache.org/viewvc?rev=682024&view=rev
Log:
IVYDE-108: use of the 3.2 API
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java
Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt?rev=682024&r1=682023&r2=682024&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt Sat Aug 2
10:34:47 2008
@@ -7,6 +7,7 @@
- IMPROVE: Retrieve after resolve feature does not clean target directory
first (IVYDE-105)
+- FIX: IvyDE crashes during resolve due to an incompatibility with Eclipse 3.2
(IVYDE-108)
version 2.0.0 alpha1
===========================
Modified:
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java
URL:
http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java?rev=682024&r1=682023&r2=682024&view=diff
==============================================================================
---
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java
(original)
+++
ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/cpcontainer/IvyResolveJob.java
Sat Aug 2 10:34:47 2008
@@ -279,8 +279,8 @@
"Impossible to resolve dependencies of " +
md.getModuleRevisionId(),
null);
for (Iterator iter = problemMessages.iterator();
iter.hasNext();) {
- multiStatus.add(new Status(IStatus.ERROR,
IvyPlugin.ID, (String) iter
- .next()));
+ multiStatus.add(new Status(IStatus.ERROR,
IvyPlugin.ID, IStatus.ERROR,
+ (String) iter.next(), null));
}
status[0] = multiStatus;
return;