diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-12 00:07:16 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-10-12 00:09:31 +0200 |
commit | 1e28ff393047abff3a464637a15b86eebe52325e (patch) | |
tree | 6be6faab2b9b239d9a1f0add71cd78e785adbdfa | |
parent | aa61766dab4ff9f30937be9e63a2edb784f2637c (diff) | |
download | lombok-1e28ff393047abff3a464637a15b86eebe52325e.tar.gz lombok-1e28ff393047abff3a464637a15b86eebe52325e.tar.bz2 lombok-1e28ff393047abff3a464637a15b86eebe52325e.zip |
We now test lombok in a new eclipse launched in the debugger which is waaay nicer. The old runEclipse scripts are now useless, so they have been removed.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Lombokized DebugEclipse.launch | 34 | ||||
-rwxr-xr-x | runEclipse | 5 | ||||
-rw-r--r-- | runEclipse.bat | 7 |
4 files changed, 35 insertions, 12 deletions
@@ -2,3 +2,4 @@ bin build dist google.properties +debug diff --git a/Lombokized DebugEclipse.launch b/Lombokized DebugEclipse.launch new file mode 100644 index 00000000..476d10fa --- /dev/null +++ b/Lombokized DebugEclipse.launch @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<launchConfiguration type="org.eclipse.pde.ui.RuntimeWorkbench"> +<booleanAttribute key="append.args" value="true"/> +<booleanAttribute key="askclear" value="false"/> +<booleanAttribute key="automaticAdd" value="true"/> +<booleanAttribute key="automaticValidate" value="false"/> +<stringAttribute key="bootstrap" value=""/> +<stringAttribute key="checked" value="[NONE]"/> +<booleanAttribute key="clearConfig" value="false"/> +<booleanAttribute key="clearws" value="true"/> +<booleanAttribute key="clearwslog" value="true"/> +<stringAttribute key="configLocation" value="${workspace_loc}/.metadata/.plugins/org.eclipse.pde.core/Lombokized DebugEclipse"/> +<booleanAttribute key="default" value="true"/> +<booleanAttribute key="includeOptional" value="true"/> +<stringAttribute key="location" value="${project_loc:lombok}/debug/workspace"/> +<stringAttribute key="org.eclipse.debug.core.source_locator_id" value="org.eclipse.pde.ui.launcher.PDESourceLookupDirector"/> +<stringAttribute key="org.eclipse.debug.core.source_locator_memento" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <sourceLookupDirector> <sourceContainers duplicates="false"> <container memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;javaProject name=&quot;lombok.patcher&quot;/&gt;&#10;" typeId="org.eclipse.jdt.launching.sourceContainer.javaProject"/> <container memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;default/&gt;&#10;" typeId="org.eclipse.debug.core.containerType.default"/> </sourceContainers> </sourceLookupDirector> "/> +<listAttribute key="org.eclipse.debug.ui.favoriteGroups"> +<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/> +</listAttribute> +<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/> +<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}"/> +<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/> +<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xms40m -Xmx512m -Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts -javaagent:${project_loc:lombok}/dist/lombok.jar -Xbootclasspath/a:${project_loc:lombok}/dist/lombok.jar -Dlombok.patcher.patchDebugDir=${project_loc:lombok}/debug/patchedClasses"/> +<stringAttribute key="pde.version" value="3.3"/> +<stringAttribute key="product" value="org.eclipse.sdk.ide"/> +<booleanAttribute key="show_selected_only" value="false"/> +<stringAttribute key="templateConfig" value="${target_home}/configuration/config.ini"/> +<booleanAttribute key="tracing" value="false"/> +<booleanAttribute key="useDefaultConfig" value="true"/> +<booleanAttribute key="useDefaultConfigArea" value="true"/> +<booleanAttribute key="useProduct" value="true"/> +<booleanAttribute key="usefeatures" value="false"/> +</launchConfiguration> diff --git a/runEclipse b/runEclipse deleted file mode 100755 index db599c3e..00000000 --- a/runEclipse +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -ant && cp dist/lombok.jar dist/lombok.eclipse.agent.jar /Applications/eclipse/Eclipse.app/Contents/MacOS && /Applications/eclipse/eclipse - - diff --git a/runEclipse.bat b/runEclipse.bat deleted file mode 100644 index 2e36c9cb..00000000 --- a/runEclipse.bat +++ /dev/null @@ -1,7 +0,0 @@ -SET ECLIPSEDIR=c:\eclipse -CALL ant -COPY dist\lombok.jar %ECLIPSEDIR%\*.* -SET curdir=%CD% -CD %ECLIPSEDIR% -eclipsec.exe -CD %curdir% |