From 1e28ff393047abff3a464637a15b86eebe52325e Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 12 Oct 2009 00:07:16 +0200 Subject: 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. --- .gitignore | 1 + Lombokized DebugEclipse.launch | 34 ++++++++++++++++++++++++++++++++++ runEclipse | 5 ----- runEclipse.bat | 7 ------- 4 files changed, 35 insertions(+), 12 deletions(-) create mode 100644 Lombokized DebugEclipse.launch delete mode 100755 runEclipse delete mode 100644 runEclipse.bat diff --git a/.gitignore b/.gitignore index 87414d04..681dd183 100644 --- a/.gitignore +++ b/.gitignore @@ -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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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% -- cgit