1 The source code for the classes in this prebuilt can 2 be found in the src.zip in this directory. 3 4 The objects in this prebuilt directory can also be 5 rebuilt using the source archive hosted at 6 7 http://projectlombok.org/ 8 9 Specifically, changeset 3c4f94d418b58d55d0facebf2bfbb362d4bf3bdd 10 from 11 https://github.com/rzwitserloot/lombok.ast 12 13 NOTE 1: The 0.2.1 bits were patched by this CL: 14 https://github.com/tnorbye/lombok.ast 15 which basically adds an extra field to the nodes to track 16 the original source AST node. The lombok-ast-0.2.1-src.zip 17 includes these diffs. 18 19 NOTE 2: Lombok.AST was combined with Guava 13.0.1 to match 20 what is used in the rest of the tools, and Guava was also 21 removed from the lombok binary (which by default jarjar's it 22 into the lombok.jar), since it will always be used in a 23 context where Guava is already ready, so no point in bundling 24 a private copy. 25 26 diff --git a/build.xml b/build.xml 27 index 3575ecf..11570d0 100644 28 --- a/build.xml 29 +++ b/build.xml 30 @@ -231,6 +231,7 @@ 31 <unjar dest="build/lombok.ast"> 32 <path refid="runtime.path" /> 33 </unjar> 34 + <delete dir="build/lombok.ast/com/google" /> 35 </target> 36 37 <target name="dist" depends="compile, version, unpackLibs" description="Creates distributable."> 38 @@ -240,7 +241,9 @@ 39 <fileset dir="build/lombok.ast" /> 40 <fileset dir="." includes="LICENSE" /> 41 <fileset dir="." includes="AUTHORS" /> 42 +<!-- 43 <rule pattern="com.google.common.**" result="lombok.ast.libs.com.google.common.@1" /> 44 +--> 45 <rule pattern="org.parboiled.**" result="lombok.ast.libs.org.parboiled.@1" /> 46 <rule pattern="com.zwitserloot.cmdreader.**" result="lombok.ast.libs.com.zwitserloot.cmdreader.@1 47 <manifest> 48