aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-12-01 00:24:33 +0100
committerReinier Zwitserloot <reinier@tipit.to>2009-12-01 00:24:33 +0100
commit9fb4c3a42429c102e4cb9235b7e70163b2d5ed86 (patch)
tree274e6c8ca9079013eae9fd398a8652943291231c
parent21607e4a82c07917b611bdc01fb1129c4511db8e (diff)
downloadlombok-9fb4c3a42429c102e4cb9235b7e70163b2d5ed86.tar.gz
lombok-9fb4c3a42429c102e4cb9235b7e70163b2d5ed86.tar.bz2
lombok-9fb4c3a42429c102e4cb9235b7e70163b2d5ed86.zip
Added compiling of src/netbeansAgent, and temporarily set Agent-Class to netbeans agent. Will need to find a solution for a generic be-everything agent.
-rw-r--r--buildScripts/compile.ant.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/buildScripts/compile.ant.xml b/buildScripts/compile.ant.xml
index 52dff701..a1181f87 100644
--- a/buildScripts/compile.ant.xml
+++ b/buildScripts/compile.ant.xml
@@ -83,6 +83,7 @@ lombok code including the various agents.
<sourcePath path="src/core" />
<sourcePath path="src/installer" />
<sourcePath path="src/eclipseAgent" />
+ <sourcePath path="src/netbeansAgent" />
<sourcePath path="src/delombok" />
<class location="build/lombok/lombok" />
</findbugs>
@@ -119,8 +120,10 @@ lombok code including the various agents.
<javac debug="on" destdir="build/lombok" target="1.6" source="1.6">
<src path="src/core" />
<src path="src/delombok" />
+ <src path="src/netbeansAgent" />
<include name="lombok/javac/**" />
<include name="lombok/delombok/**" />
+ <include name="lombok/netbeans/**" />
<classpath location="build/lombok" />
<classpath refid="deps.path" />
<classpath refid="libs.path" />
@@ -135,6 +138,9 @@ lombok code including the various agents.
<fileset dir="src/eclipseAgent">
<patternset refid="copyables" />
</fileset>
+ <fileset dir="src/netbeansAgent">
+ <patternset refid="copyables" />
+ </fileset>
<fileset dir="src/delombok">
<patternset refid="copyables" />
</fileset>
@@ -153,7 +159,8 @@ 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.eclipse.agent.EclipsePatcher" /> -->
+ <attribute name="Premain-Class" value="lombok.netbeans.agent.NetbeansPatcher" />
<attribute name="Can-Redefine-Classes" value="true" />
<attribute name="Main-Class" value="lombok.core.Main" />
<attribute name="Lombok-Version" value="${lombok.version}" />