Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 29134 invoked from network); 3 Apr 2011 12:14:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Apr 2011 12:14:02 -0000 Received: (qmail 68753 invoked by uid 500); 3 Apr 2011 12:14:02 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 68729 invoked by uid 500); 3 Apr 2011 12:14:02 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 68722 invoked by uid 99); 3 Apr 2011 12:14:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Apr 2011 12:14:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Apr 2011 12:14:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 43D5D23889ED; Sun, 3 Apr 2011 12:13:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1088266 - /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/retrieve/StandaloneRetrieveSerializer.java Date: Sun, 03 Apr 2011 12:13:41 -0000 To: notifications@ant.apache.org From: hibou@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110403121341.43D5D23889ED@eris.apache.org> Author: hibou Date: Sun Apr 3 12:13:40 2011 New Revision: 1088266 URL: http://svn.apache.org/viewvc?rev=1088266&view=rev Log: fix the ivysettings load for retrieved setup Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/retrieve/StandaloneRetrieveSerializer.java Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/retrieve/StandaloneRetrieveSerializer.java URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/retrieve/StandaloneRetrieveSerializer.java?rev=1088266&r1=1088265&r2=1088266&view=diff ============================================================================== --- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/retrieve/StandaloneRetrieveSerializer.java (original) +++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/retrieve/StandaloneRetrieveSerializer.java Sun Apr 3 12:13:40 2011 @@ -211,6 +211,7 @@ public class StandaloneRetrieveSerialize if (item.getNodeName().equals(IVYSETTINGS)) { IvySettingsSetup ivySettingsSetup = readIvySettingsSetup(item); setup.setIvySettingsSetup(ivySettingsSetup); + setup.setSettingsProjectSpecific(true); } else if (item.getNodeName().equals(IVYXML)) { String ivyXmlPath = readIvyXmlPath(item); setup.setIvyXmlPath(ivyXmlPath);