aboutsummaryrefslogtreecommitdiff
path: root/buildScripts
AgeCommit message (Collapse)Author
2022-04-21[Fixes #3179] createMavenECJBootstrap was brokenReinier Zwitserloot
2022-04-18[build] [trivial] Add a description for the main release targetReinier Zwitserloot
2022-04-04[build] Replace JDK test targets from v14 en v16 to v17 (LTS) and v18 (just ↵Reinier Zwitserloot
released)
2022-04-04[build] It was ever so slightly broken since last commit. fixed.Reinier Zwitserloot
2022-04-02[#3143] Review and update jopatai's work on the maven/ecj agent jarReinier Zwitserloot
* Update copyright headers * Update code style (tabs, not spaces, spaces around + operator - that's about it) * Use `x.class.getResourceAsStream`, not `x.getClass().` - minor mostly irrelevant nit. * Rename and re-locate the jar itself. * 'ecj' as an alias for this command seems a bit too cavalier' removed it. * The source is in its own 'root' src dir, it doesn't really fit in the eclipse agent sources - it's more a maven agent. * Fixed a bug where a filehandle wasn't safe closed. Mostly irrelevant (JVM would quite afterwards anyway). * Slight rewording of the ecj docs.
2022-03-18[fixes #3143] Maven+ECJ Agent BootstrapJohnPaulTaylorII
* Adds AgentBootstrap, the actual bootstrapping agent * Adds MavenEcjBootstrapApp, the command line app for generating the appropriate files * Updates the build to package these correctly * Updates the documentation for setup/ecj
2022-03-17[build] Accidentally broke it an hour agoReinier Zwitserloot
2022-03-17Merge branch 'jdk18' of https://github.com/Rawi01/lombok into Rawi01-jdk18Reinier Zwitserloot
2022-03-17[deps] make lombok.patcher v0.44 availableReinier Zwitserloot
2022-03-08[jdk18] Bump lombok.patcher versionRawi01
2022-01-29doc footer </i>Roel Spilker
2022-01-28no more -website.clientdepsRoel Spilker
2022-01-27get modernizer from cdnRoel Spilker
2022-01-27use cdn jquery + updateRoel Spilker
2022-01-25[build] Generation of the javadoc was brokenReinier Zwitserloot
We've split up the build dirs for various phases of the lombok compile process, and evidently `javadoc` doesn't work unless it can find all types involved on the classpath, even for types that only show up internally. I was thinking javadoc should just look at (protected/public) signatures, not internals, but, alas.
2022-01-23[fixes #2860] [build] creating intellij project structure was broken.Reinier Zwitserloot
I've no idea if this produces a working intellij project, but at least it doesn't fail during the build.
2022-01-16[log4j] one more log4j update. Again, lombok is not and never was ↵Reinier Zwitserloot
vulnerable, just ensuring your vulnerability scanners dont give off false positives.
2021-12-20Help eclipse compile >java6 codeRoel Spilker
2021-12-18[#3063] Whilst lombok is not vulnerable to Log4Shell, we do have the ↵Reinier Zwitserloot
dependency on log4j, solely for testing purposes, and no user input is ever logged with it. Nevertheless, pushing the dep to 2.17 to avoid false positives from vulnerability scanners ruining the day.
2021-12-16[#3063] Whilst lombok is not vulnerable to Log4Shell, we do have the ↵Reinier Zwitserloot
dependency on log4j, solely for testing purposes, and no user input is ever logged with it. Nevertheless, pushing the dep to 2.16 to avoid false positives from vulnerability scanners ruining the day.
2021-12-12[fixes #3063] Bump log4j2 dep version to avoid needless security warnings ↵Reinier Zwitserloot
from dep scanners - lombok is not affected by CVE-2021-44228.
2021-10-22[fixes #2985] Resolve var/val only once in eclipseRawi01
2021-04-23Change owner lombok GitHub repositoryRoel Spilker
2021-03-23[testing] wahey, ecj testing works again, and now we can test JDK16 features ↵Reinier Zwitserloot
in it!
2021-03-22[deps] pushing ASM to 9.1, and ASM opcode compat levels to ASM9, as we need ↵Reinier Zwitserloot
the support for records
2021-03-19[build] broke the distribution.Reinier Zwitserloot
2021-03-19[build] remove some errors in eclipse.Reinier Zwitserloot
The ant task we use for streaming test reporting in the ant script needs deps we don't wanna include in eclipse, so I moved it to a src dir that we don't include in eclipse by default.
2021-03-19[testing] add a test.javac16Reinier Zwitserloot
2021-03-19[testing] fix vm-finder on macs.Reinier Zwitserloot
2021-03-19[testing] Fixing running older tests.Reinier Zwitserloot
the new formatter is nice, but needed to be compile with 1.6, otherwise running junit on older VMs doesn't work.
2021-03-19[testing] made the test script a bit more consistentReinier Zwitserloot
2021-03-19[testing] improve the output of `ant test`.Reinier Zwitserloot
2021-03-19[build] quality-of-life improvements for lombok dev on windowsReinier Zwitserloot
On windows, Eclipse keeps annotation processors open, which means putting spiProcessor in 'build' is annoying, as you can't delete open files on windows. Fixed by moving it to dist
2021-03-19[testing] now that we've patched lombok to work in j16, no need for the ↵Reinier Zwitserloot
--add-opens lines anymore.
2021-03-19[testing] unbroke 'ant test.javac8'.Reinier Zwitserloot
2021-03-18[build] the new spi processor didn't handle inner types used as SPI targets.Reinier Zwitserloot
2021-03-18[typo] oh dear, I broke the build again.Reinier Zwitserloot
2021-03-17[build] Further adjustments to the 'ant intellij' target.Reinier Zwitserloot
As I don't use intellij, no idea if it works. Feedback welcome!
2021-03-17[build] Fixed the ant eclipse and ant intellij targets.Reinier Zwitserloot
2021-03-16[build] sped up the build considerable.Reinier Zwitserloot
We used to use the mango SPI processor, but this had two major issues: * ecj wouldn't run annotation processors, requiring a separate proc:only compile run with javac * mangoSPI couldn't do incremental compilation, so this required a full rebuild just to generate SPI files, every time. Addressed by updating to IPP40 which does support explicit annotation processors even for ecj, and adding our own SPI generating annotation processor to the build which can deal with incrementals. There are some limits; removing a `@Provides` annotation on an existing type will need a full clean to pick that up, for example. These limits seem quite exotic, though.
2021-03-13[test] work in progress: Make test.javac6 pass all tests.Reinier Zwitserloot
The `test.javac6` job causes a ton of errors because many tests use java8+ features. Marking them off as java8+ targeted only.
2021-03-05[tests] fix tests on java6/7Reinier Zwitserloot
2021-03-05[javac6] replacing calls to ListBuffer add/addAll to the append variants; ↵Reinier Zwitserloot
add/addAll do not work in j6.
2021-01-28[versioning] pre-release version bump of the changelog as wellReinier Zwitserloot
2020-12-22[trivial] hey, setting automatic module name is probably a good idea. Can't ↵Reinier Zwitserloot
hurt.
2020-12-04[build] build is now far less unreliableReinier Zwitserloot
Tiered compilation used to dump every stage into the same build dir, and included that dir on the classpath, which means any ordering issues introduced into a build aren't going to result in a failed build, thus breaking the build for everybody except those who already had a working lombok in their build dir before starting a build. The opposite of bootstrapping, in other words. Fixed by having each stage build into its own private stage phase.
2020-12-04[build] the build can now autocleanReinier Zwitserloot
autocleaning means that the build system detects that the usual incremental mode, where the build artefacts are not deleted and instead used to skip steps already performed, is not an option due to changes in the build script itself or a change in deps not detectable. It works by having a version number which can be incremented, and a system that checks for mismatches and forces a clean.
2020-12-04[build] bugfix for mapstructBinding buildReinier Zwitserloot
2020-12-04[build] added a publish target for the mapstruct binding jarReinier Zwitserloot
2020-12-04[build] #2616 have lombok-mapstruct-binding contain a java module file and ↵Roel Spilker
java8 class files.