aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-28Generate default no-args constructorRoel Spilker
2018-05-15[documentation] documenting the new-style include/exclude of ToString and ↵Reinier Zwitserloot
EqualsAndHashCode
2018-05-15[new-style include/exclude] added new-style include/exclude support to ↵Reinier Zwitserloot
EqualsAndHashCode.
2018-05-14fixes #1580 - documenting Pascal Bihler's contribution to making lombok run ↵Reinier Zwitserloot
better with gradle
2018-05-14Merge pull request #1680 from pbi-qfs/gradleIncrementalReinier Zwitserloot
Allow gradle incremental compiling with lombok
2018-05-14[annotation based ToString] hey.. we have annotation based ToString now, ↵Reinier Zwitserloot
where you can include/exclude fields by annotating the fields.
2018-05-08[website] bugfix; supporters weren’t being shown.Reinier Zwitserloot
2018-05-03Allow gradle incremental compiling with lombok in annotation processor pathPascal Bihler
Fixes issue #1580
2018-05-02docker bazel: use local lombok.jar fileRoel Spilker
2018-05-01docker: use openjdk for java9Roel Spilker
2018-05-01docker: add bazelRoel Spilker
2018-04-30update docker files and documentationRoel Spilker
2018-04-30jdk10: update download for the jdkRoel Spilker
2018-04-23document fix in edge releaseRoel Spilker
2018-04-23Allow onMethod and onParam in @Getter and @Setter if it is put on a typeRoel Spilker
2018-04-23[bugfix] generics on inner classes whose outer type has generics, when the ↵Reinier Zwitserloot
outer type is an interface, caused bugs in ecj.
2018-04-23[bugfix] onMethod_ in javac was broken; javac would throw an ↵Reinier Zwitserloot
IllegalArgumentException.
2018-04-23move javadoc to public methodRoel Spilker
2018-04-23Merge pull request #1670 from kdaemonv/hotfix-1Reinier Zwitserloot
Revert some changes from f540335 which break the build
2018-04-23fix typo in EclipseProductLocationProvider.javakdaemonv
change NotAnIdeLocationException to CorruptedIdeLocationException in javadoc for private method create0(String path)
2018-04-20move ClassLiteral and FieldSelect from ↵Dmitry Kurelchuk
core/lombok/core/AnnotationValues.java to utils/lombok/core/
2018-04-17[Fixes #1656] Lombok would silently do the wrong thing when using references ↵Reinier Zwitserloot
to `public static final String` fields, instead of actual string literals, there where you can specify strings in lombok annotation parameters, such as `@ToString(of = MyClass.CONSTANT_FIELD)`. We can’t really fix it, but at least now lombok will error when you do that and describe in detail what’s going wrong.
2018-04-16[build] Trying to build lombok on JDK1.8 or less is not gonna work. Now we ↵Reinier Zwitserloot
generate an error during build to make that more clear. Addresses issue 1659.
2018-04-16Merge pull request #1660 from tmurakam/feature/fix-1657-fileobject-uriReinier Zwitserloot
fix #1657: EmptyLombokFileObject: file:// URI must not contain author…
2018-04-16Merge branch 'master' into feature/fix-1657-fileobject-uriReinier Zwitserloot
2018-04-16Create valid uri, fixes #1657Roel Spilker
2018-04-17fix #1657: EmptyLombokFileObject: file:// URI must not contain authority part.Takuya Murakami
fix degrade of #1617, the file URI must starts with 'file:///', not 'file://'.
2018-04-10[delombok] Added an option to emit only changed files.Reinier Zwitserloot
2018-04-10Potential fix for #1604Roel Spilker
2018-04-10Merge pull request #886 from balta3/annotationarraysReinier Zwitserloot
implemented support for annotation arrays as annotation attributes in javac
2018-04-10[website] Added a section on contributing to lombok, with documentation on ↵Reinier Zwitserloot
how lombok’s execution path works. See pull request #71
2018-04-10[website] Whoops we had 2 copies of usage_examples. Fixed that by deleting ↵Reinier Zwitserloot
the one that was NOT being used for the website.
2018-04-09update changelogRoel Spilker
2018-04-09Update delombok cmd example. Fixes #1643Roel Spilker
2018-04-05Merge branch 'cheelio-FieldNameConstants'Reinier Zwitserloot
2018-04-05[fieldNameConstants] code review, docs, tests, fixup.Reinier Zwitserloot
2018-04-04Merge branch 'FieldNameConstants' of https://github.com/cheelio/lombok into ↵Reinier Zwitserloot
cheelio-FieldNameConstants
2018-04-04Merge pull request #1626 from victorwss/masterReinier Zwitserloot
Fix for #1617.
2018-04-04Merge pull request #1627 from nuessgens/masterReinier Zwitserloot
Partially fix for "A save participant caused problems" with Eclipse
2018-04-04Merge pull request #1639 from tmurakam/feature/1632-jdk11Reinier Zwitserloot
fix #1632: JavacAST: use new Log method for jdk11
2018-04-04[build] Clean checkouts wouldnt build correctly.Reinier Zwitserloot
2018-03-31fix #1632: JavacAST: use new Log method for jdk11Takuya Murakami
Some methods of AbstractLog are removed in jdk11. Fix JavacAST.Jdk9Plus to use new log methods added from jdk9.
2018-03-29[trivial] build script fix for website-only: It was adding an & to the ↵Reinier Zwitserloot
full version string every call.
2018-03-28add self to authors [Issue #879]mateusz-matela
2018-03-28add self to authorsChristian Nüssgens
2018-03-28Merge remote-tracking branch 'remotes/upstream/master'Christian Nüssgens
2018-03-27add subresource integrity to external resources on webpageRoel Spilker
2018-03-27Previous add to the build system to verify checksums is not really workable ↵Roel Spilker
in ant without a page worth of tasks so reverted that and went with a renamed file instead to solve the problem of having served the wrong rt.jar for a while.
2018-03-27Adding my name to the AUTHORS file.Victor Williams Stafusa da Silva
Signed-off-by: Victor Williams Stafusa da Silva <victorwssilva@gmail.com>
2018-03-27[trivial] eclipse patches are loaded from Class50 even if you override the ↵Reinier Zwitserloot
shadowloader classpath, but only if you have lombok.jar in there. This solves exotic problems if you try to add some features to lombok in a separate jar, and addresses issue #1523