I am new to Gradle plugin development and I am writing the code in Java (not Groovy). My question is somewhat similar to this thread.
I am developing a plugin which applies another plugin and trying to provide a wrapper by customizing few configurations.
The applied plugin has few extensions like dataExtension
, dependencyCheck
extension for which I can configure values in build.gradle file (sample configurations).
Now I want to configure these values from my custom plugin instead of build.gradle file. So I want to re-use these extensions and configuration values of dependencyCheck plugin in my plugin
I tried the following after applying the plugin programmatically:
Directly used the properties for the plugin:
DependencyCheckPlugin p = project.getPlugins.apply(DependencyCheckPlugin.class) p.setProperty("dependencyCheck.outputDirectory", project.getBuildDir());
This is not working as expected.
Directly set properties to project
DependencyCheckPlugin p = project.getPlugins.apply(DependencyCheckPlugin.class) project.setProperty("dependencyCheck.outputDirectory", project.getBuildDir());`
I got error message project doesn’t have the property dependencyCheck.outputDirectory
.
Tried to get Extension of the applied plugin and set properties
DependencyCheckExtension depExtn = (DependencyCheckExtension)project.getExtensions().getByType(DependencyCheckExtension.class); depExtn.setAutoUpdate(false); depExtn.setOutputDirectory(extn.getOutputdir()); depExtn.setFormat(ReportGenerator.Format.ALL);
I got error message saying that the Extension is not found in this project.
Any suggestion on how I can configure the internal plugin from external plugin?
I've implemented in the following way:
Here's the whole example.