diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2016-06-14 03:32:36 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2016-06-14 03:32:36 +0200 |
commit | eb09843cce285caecd25e1a459e95d8c28dda417 (patch) | |
tree | 6826afb51c34b67f2a8175e1beeb272ca343a55f /doc/changelog.markdown | |
parent | ddd4e1feaee9fc4e450c7bed7e7938ff22455756 (diff) | |
download | lombok-eb09843cce285caecd25e1a459e95d8c28dda417.tar.gz lombok-eb09843cce285caecd25e1a459e95d8c28dda417.tar.bz2 lombok-eb09843cce285caecd25e1a459e95d8c28dda417.zip |
ShadowClassLoader is now friendlier to trying to extend lombok.
Your (separate) jar/dir should have a file named META-INF/ShadowClassLoader.
This file should contain the string 'lombok'. If you have that, any classes
in that jar/dir will be loaded in the same space as lombok classes. You can
also rename the class files to .SCL.lombok to avoid other loaders from finding
them.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 9bff6d56..393cbe7d 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -4,6 +4,7 @@ Lombok Changelog ### v1.16.9 "Edgy Guinea Pig" * FEATURE: Added support for JBoss logger [Issue #1103](https://github.com/rzwitserloot/lombok/issues/1103) * ENHANCEMENT: Running `javac -Xlint:all` would generate a warning about unclaimed annotations [Issue #1117](https://github.com/rzwitserloot/lombok/issues/1117) +* FEATURE: Adding custom extensions to lombok now easier. [More information](https://projectlombok.org/features/extending.html). ### v1.16.8 (March 7th, 2016) |