Author: [email protected]
Date: Wed Apr 1 13:01:03 2009
New Revision: 5152
Modified:
tools/lib/eclipse/update-jdt.py
Log:
Added cautionary note to update-jdt.py to prevent future breaks.
Modified: tools/lib/eclipse/update-jdt.py
==============================================================================
--- tools/lib/eclipse/update-jdt.py (original)
+++ tools/lib/eclipse/update-jdt.py Wed Apr 1 13:01:03 2009
@@ -1,3 +1,16 @@
+#
----------------------------------------------------------------------------
+# NOTE NOTE NOTE!
+# This script is out of date. We now require Ant support so that we can
+# compile JSPs in hosted mode. We need to modify this to include:
+#
+# org.eclipse.jdt.core.JDTCompilerAdapter
+# org.eclipse.jdt.internal.antadapter.*
+#
+# Also, it's worth noting that Eclipse now offers a "JDT Core Batch
Compiler".
+# We should look at using this standalone compiler as-is. Example:
+#
http://download.eclipse.org/eclipse/downloads/drops/R-3.4.2-200902111700/index.php#JDTCORE
+#
----------------------------------------------------------------------------
+#
# update-jdt.py
#
# This script is used to massage a JDT jar from Eclipse
@@ -12,6 +25,10 @@
import re
import sys
import zipfile
+
+print "This script is out of date, see note at top!"
+print "(Remove these lines if you really know what you're doing)"
+sys.exit(1)
# White listing
jarWhitelist = [
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---