Commit Graph
2230 Commits
Author SHA1 Message Date
Reinier Zwitserloot effa4e9474 [release] pre-release version bump 2018-05-29 00:13:57 +02:00
Reinier Zwitserloot d07ffaa17d [trivial] small update to changelog 2018-05-28 23:56:48 +02:00
Reinier Zwitserloot 2c9c2fefdb Upgraded lombok.patcher dep to 0.26. (Which updates ASM to be Java10/11 compatible). 2018-05-28 22:29:27 +02:00
Pascal BihlerandRoel Spilker c91753fcec [authors] Added Pascal Bihler to author list and restored alphabetical order 2018-05-28 22:26:56 +02:00
Roel Spilker d438878127 Update docs. 2018-05-28 22:00:57 +02:00
Roel Spilker 6045c1b8f5 Generate default no-args constructor 2018-05-28 21:54:12 +02:00
Reinier Zwitserloot 4fb9c6f7f8 [documentation] documenting the new-style include/exclude of ToString and EqualsAndHashCode 2018-05-15 01:07:03 +02:00
Reinier Zwitserloot 649a7b72bf [new-style include/exclude] added new-style include/exclude support to EqualsAndHashCode. 2018-05-15 00:50:58 +02:00
Reinier Zwitserloot 323cc5267e fixes #1580 - documenting Pascal Bihler's contribution to making lombok run better with gradle 2018-05-14 23:08:28 +02:00
Reinier ZwitserlootandGitHub 366d18c861 Merge pull request #1680 from pbi-qfs/gradleIncremental
Allow gradle incremental compiling with lombok
2018-05-14 23:03:25 +02:00
Reinier Zwitserloot ad21a1573b [annotation based ToString] hey.. we have annotation based ToString now, where you can include/exclude fields by annotating the fields. 2018-05-14 22:03:46 +02:00
Reinier Zwitserloot 82a7354a84 [website] bugfix; supporters weren’t being shown. 2018-05-08 00:01:48 +02:00
Pascal Bihler a2623f1965 Allow gradle incremental compiling with lombok in annotation processor path
Fixes issue #1580
2018-05-03 12:09:12 +02:00
Roel Spilker a9aafe2d79 docker bazel: use local lombok.jar file 2018-05-02 15:54:47 +02:00
Roel Spilker 1230d449b4 docker: use openjdk for java9 2018-05-01 17:53:05 +02:00
Roel Spilker 7d58127360 docker: add bazel 2018-05-01 01:45:08 +02:00
Roel Spilker 87ad2f6f59 update docker files and documentation 2018-04-30 23:32:05 +02:00
Roel Spilker 3ea12bdeba jdk10: update download for the jdk 2018-04-30 22:14:35 +02:00
Roel Spilker 90b699ef10 document fix in edge release 2018-04-23 23:29:25 +02:00
Roel Spilker b081e6c968 Allow onMethod and onParam in @Getter and @Setter if it is put on a type 2018-04-23 23:26:51 +02:00
Reinier Zwitserloot a27826b268 [bugfix] generics on inner classes whose outer type has generics, when the outer type is an interface, caused bugs in ecj. 2018-04-23 22:36:07 +02:00
Reinier Zwitserloot 472d602693 [bugfix] onMethod_ in javac was broken; javac would throw an IllegalArgumentException. 2018-04-23 22:18:57 +02:00
Roel Spilker 44abd07764 move javadoc to public method 2018-04-23 21:11:49 +02:00
Reinier ZwitserlootandGitHub c0a3ad3d18 Merge pull request #1670 from kdaemonv/hotfix-1
Revert some changes from f540335 which break the build
2018-04-23 21:09:46 +02:00
kdaemonvandRoel Spilker 6d6e3dc6a9 fix typo in EclipseProductLocationProvider.java
change NotAnIdeLocationException to CorruptedIdeLocationException in javadoc for private method create0(String path)
2018-04-23 21:05:21 +02:00
Dmitry Kurelchuk e6532bbe94 move ClassLiteral and FieldSelect from core/lombok/core/AnnotationValues.java to utils/lombok/core/ 2018-04-20 22:47:34 +03:00
Reinier Zwitserloot f540335ef9 [Fixes #1656] Lombok would silently do the wrong thing when using references 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-17 04:19:37 +02:00
Reinier Zwitserloot 7e81ac6238 [build] Trying to build lombok on JDK1.8 or less is not gonna work. Now we generate an error during build to make that more clear. Addresses issue 1659. 2018-04-16 22:29:13 +02:00
Reinier ZwitserlootandGitHub 3a8c8cad0a Merge pull request #1660 from tmurakam/feature/fix-1657-fileobject-uri
fix #1657: EmptyLombokFileObject: file:// URI must not contain author…
2018-04-16 22:01:55 +02:00
Reinier ZwitserlootandGitHub 23a13c4527 Merge branch 'master' into feature/fix-1657-fileobject-uri 2018-04-16 22:01:27 +02:00
Roel Spilker e90064cf1d Create valid uri, fixes #1657 2018-04-16 21:55:03 +02:00
Takuya Murakami 888546fd9f fix #1657: EmptyLombokFileObject: file:// URI must not contain authority part.
fix degrade of #1617, the file URI must starts with 'file:///', not 'file://'.
2018-04-17 00:18:26 +09:00
Reinier Zwitserloot de01d1eae1 [delombok] Added an option to emit only changed files. 2018-04-10 01:55:11 +02:00
Roel Spilker f4bc0323dc Potential fix for #1604 2018-04-10 00:44:57 +02:00
Reinier ZwitserlootandGitHub 8614edfd85 Merge pull request #886 from balta3/annotationarrays
implemented support for annotation arrays as annotation attributes in javac
2018-04-10 00:41:13 +02:00
Reinier Zwitserloot 22e9c25db6 [website] Added a section on contributing to lombok, with documentation on how lombok’s execution path works. See pull request #71 2018-04-10 00:23:49 +02:00
Reinier Zwitserloot 57fb2b9773 [website] Whoops we had 2 copies of usage_examples. Fixed that by deleting the one that was NOT being used for the website. 2018-04-10 00:23:49 +02:00
Roel Spilker 4dce9a351d update changelog 2018-04-09 23:19:54 +02:00
Roel Spilker bcd83687e3 Update delombok cmd example. Fixes #1643 2018-04-09 22:16:57 +02:00
Reinier Zwitserloot 675699fccb Merge branch 'cheelio-FieldNameConstants' 2018-04-05 14:22:53 +02:00
Reinier Zwitserloot b6fb3c03fa [fieldNameConstants] code review, docs, tests, fixup. 2018-04-05 14:22:40 +02:00
Reinier Zwitserloot 2c93d336c1 Merge branch 'FieldNameConstants' of https://github.com/cheelio/lombok into cheelio-FieldNameConstants 2018-04-04 23:51:16 +02:00
Reinier ZwitserlootandGitHub c2f0736c5e Merge pull request #1626 from victorwss/master
Fix for #1617.
2018-04-04 23:48:24 +02:00
Reinier ZwitserlootandGitHub b7a732a50f Merge pull request #1627 from nuessgens/master
Partially fix for "A save participant caused problems" with Eclipse
2018-04-04 23:40:08 +02:00
Reinier ZwitserlootandGitHub 4f63174693 Merge pull request #1639 from tmurakam/feature/1632-jdk11
fix #1632: JavacAST: use new Log method for jdk11
2018-04-04 23:38:44 +02:00
Reinier Zwitserloot 174ad394d6 [build] Clean checkouts wouldnt build correctly. 2018-04-04 21:59:49 +02:00
Takuya Murakami 1bc85b6ba9 fix #1632: JavacAST: use new Log method for jdk11
Some methods of AbstractLog are removed in jdk11.
Fix JavacAST.Jdk9Plus to use new log methods added from jdk9.
2018-03-31 22:40:02 +09:00
Reinier Zwitserloot 7422b28e52 [trivial] build script fix for website-only: It was adding an & to the full version string every call. 2018-03-29 14:00:16 +02:00
mateusz-matelaandChristian Nüssgens ea7d6727bc add self to authors [Issue #879] 2018-03-28 20:36:08 +02:00
Christian Nüssgens ba928d194b add self to authors 2018-03-28 19:20:49 +02:00