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 df3fbf80b9ac3efe67a3b1d2713a0de30b6a74d5 10 from 11 https://github.com/rzwitserloot/lombok.ast 12 13 NOTE: Lombok.AST was combined with Guava 13.0.1 to match 14 what is used in the rest of the tools, and Guava was also 15 removed from the lombok binary (which by default jarjar's it 16 into the lombok.jar), since it will always be used in a 17 context where Guava is already ready, so no point in bundling 18 a private copy. 19 20 diff --git a/build.xml b/build.xml 21 index 3575ecf..11570d0 100644 22 --- a/build.xml 23 +++ b/build.xml 24 @@ -231,6 +231,7 @@ 25 <unjar dest="build/lombok.ast"> 26 <path refid="runtime.path" /> 27 </unjar> 28 + <delete dir="build/lombok.ast/com/google" /> 29 </target> 30 31 <target name="dist" depends="compile, version, unpackLibs" description="Creates distributable."> 32 @@ -240,7 +241,9 @@ 33 <fileset dir="build/lombok.ast" /> 34 <fileset dir="." includes="LICENSE" /> 35 <fileset dir="." includes="AUTHORS" /> 36 +<!-- 37 <rule pattern="com.google.common.**" result="lombok.ast.libs.com.google.common.@1" /> 38 +--> 39 <rule pattern="org.parboiled.**" result="lombok.ast.libs.org.parboiled.@1" /> 40 <rule pattern="com.zwitserloot.cmdreader.**" result="lombok.ast.libs.com.zwitserloot.cmdreader.@1 41 <manifest> 42