From eb09843cce285caecd25e1a459e95d8c28dda417 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 14 Jun 2016 03:32:36 +0200 Subject: 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. --- doc/changelog.markdown | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') 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) -- cgit