diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-06-12 03:54:30 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-06-12 03:56:35 +0200 |
commit | 7e24174dcc80a5e2fa76c9360d4f0d84cca1696c (patch) | |
tree | d8beddbcdc6ef247c5a606fcf6be5a43774d0086 /build.xml | |
parent | 8517deb8be4a164644f5f884e8be0dec351b40ad (diff) | |
download | lombok-7e24174dcc80a5e2fa76c9360d4f0d84cca1696c.tar.gz lombok-7e24174dcc80a5e2fa76c9360d4f0d84cca1696c.tar.bz2 lombok-7e24174dcc80a5e2fa76c9360d4f0d84cca1696c.zip |
Filled out the deps and lib system with separate dirs for the agent and lombok proper, and moved spi into lombok's lib path.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -4,14 +4,23 @@ </loadresource> <property name="build.compiler" value="javac1.6" /> <path id="lombok.deps.path"> - <fileset dir="deps"> + <fileset dir="deps/lombok"> + <include name="**/*.jar" /> + </fileset> + </path> + <path id="lombok.libs.path"> + <fileset dir="lib/lombok"> + <include name="**/*.jar" /> + </fileset> + </path> + + <path id="eclipse.agent.deps.path"> + <fileset dir="deps/eclipse.agent"> <include name="**/*.jar" /> </fileset> </path> - <path id="lombok.libs.path" /> - <path id="eclipse.agent.deps.path" /> <path id="eclipse.agent.libs.path"> - <fileset dir="lib"> + <fileset dir="lib/eclipse.agent"> <include name="**/*.jar" /> </fileset> </path> |