diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-12-01 13:53:07 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-12-01 13:53:07 +0100 |
commit | 199f7f74fd35462dced087280af066cf2cad7596 (patch) | |
tree | 6c0befb9bccede364c07bb843de4f4f5edb87404 /buildScripts | |
parent | 92e2afe9b0dccc7d0055b52d07ab3128c2adf4de (diff) | |
download | lombok-199f7f74fd35462dced087280af066cf2cad7596.tar.gz lombok-199f7f74fd35462dced087280af066cf2cad7596.tar.bz2 lombok-199f7f74fd35462dced087280af066cf2cad7596.zip |
Generalized the agent mechanism; now 1 lombok.jar can serve as the agent for BOTH netbeans AND eclipse, and is future-ready for an IntelliJ agent.
Diffstat (limited to 'buildScripts')
-rw-r--r-- | buildScripts/compile.ant.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml index a1181f87..1cc6933c 100644 --- a/buildScripts/compile.ant.xml +++ b/buildScripts/compile.ant.xml @@ -159,8 +159,7 @@ lombok code including the various agents. <fileset dir="build" includes="changelog.txt" /> <fileset dir="." includes="LICENCE" /> <manifest> -<!-- <attribute name="Premain-Class" value="lombok.eclipse.agent.EclipsePatcher" /> --> - <attribute name="Premain-Class" value="lombok.netbeans.agent.NetbeansPatcher" /> + <attribute name="Premain-Class" value="lombok.core.Agent" /> <attribute name="Can-Redefine-Classes" value="true" /> <attribute name="Main-Class" value="lombok.core.Main" /> <attribute name="Lombok-Version" value="${lombok.version}" /> |