com.rapidminer.code-quality
Owner:
RapidMiner
A Gradle plugin that applies code quality plugins and configures them with useful defaults.
Version 0.4.6
Created 06 September 2018.
* Do not apply third-party license check task by default. Now it has to be enabled like this:
```aidl
codeQuality {
thirdPartyLicenseCheck = true
}
```
If enabled the check will be run by default in case the `test` task is run.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.rapidminer.code-quality") version "0.4.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.rapidminer.code-quality:com.rapidminer.code-quality.gradle.plugin:0.4.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.rapidminer.code-quality") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.rapidminer.code-quality:com.rapidminer.code-quality.gradle.plugin:0.4.6") } } apply(plugin = "com.rapidminer.code-quality")
- Applying plugins to all subprojects .