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 2008/09/24 11:24:43 UTC

svn commit: r698475 - in /ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse: CHANGES.txt src/java/org/apache/ivyde/eclipse/ui/preferences/IvyDEPreferenceStoreHelper.java

Author: hibou
Date: Wed Sep 24 02:24:43 2008
New Revision: 698475

URL: http://svn.apache.org/viewvc?rev=698475&view=rev
Log:
IVYDE-121: now the default accepted types are "jar" and "bundle"

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/ui/preferences/IvyDEPreferenceStoreHelper.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=698475&r1=698474&r2=698475&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/CHANGES.txt Wed Sep 24 02:24:43 2008
@@ -9,6 +9,7 @@
 - NEW: Handle a project: scheme for the path of the ivysettings.xml (IVYDE-94)
 - NEW: Need CleanCache task in context menu (IVYDE-114)
 
+- IMPROVE: IVYDE classpath container should support bundle types by default (IVYDE-121)
 - IMPROVE: Set current working dir to eclipse project location (IVYDE-52)
 - IMPROVE: Make the classpath entries order configuration UI more intuitive (IVYDE-104)
 - IMPROVE: Retrieve after resolve feature does not clean target directory first (IVYDE-105)

Modified: ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/preferences/IvyDEPreferenceStoreHelper.java
URL: http://svn.apache.org/viewvc/ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/preferences/IvyDEPreferenceStoreHelper.java?rev=698475&r1=698474&r2=698475&view=diff
==============================================================================
--- ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/preferences/IvyDEPreferenceStoreHelper.java (original)
+++ ant/ivy/ivyde/trunk/org.apache.ivyde.eclipse/src/java/org/apache/ivyde/eclipse/ui/preferences/IvyDEPreferenceStoreHelper.java Wed Sep 24 02:24:43 2008
@@ -35,7 +35,7 @@
         prefStore.setDefault(PreferenceConstants.IVYSETTINGS_PATH, "");
         prefStore.setDefault(PreferenceConstants.ORGANISATION, "");
         prefStore.setDefault(PreferenceConstants.ORGANISATION_URL, "");
-        prefStore.setDefault(PreferenceConstants.ACCEPTED_TYPES, "jar");
+        prefStore.setDefault(PreferenceConstants.ACCEPTED_TYPES, "jar,bundle");
         prefStore.setDefault(PreferenceConstants.SOURCES_TYPES, "source");
         prefStore.setDefault(PreferenceConstants.JAVADOC_TYPES, "javadoc");
         prefStore.setDefault(PreferenceConstants.SOURCES_SUFFIXES, "-source,-sources,-src");