[lombok] Simple maven plugin to enable lombok support

This commit is contained in:
Andrey Zinovyev
2021-04-21 19:46:15 +03:00
committed by TeamCityServer
parent 7ec709cf46
commit 3e883120dd
13 changed files with 374 additions and 2 deletions
@@ -312,9 +312,9 @@ public abstract class KotlinCompileMojoBase<A extends CommonCompilerArguments> e
try {
KotlinMavenPluginExtension extension = container.lookup(KotlinMavenPluginExtension.class, pluginName);
loadedPlugins.put(pluginName, extension);
getLog().debug("Got plugin instance" + pluginName + " of type " + extension.getClass().getName());
getLog().debug("Got plugin instance " + pluginName + " of type " + extension.getClass().getName());
} catch (ComponentLookupException e) {
getLog().debug("Unable to get plugin instance" + pluginName);
getLog().debug("Unable to get plugin instance " + pluginName);
throw new PluginNotFoundException(pluginName, e);
}
}