com.rapidminer.code-quality
Owner:
RapidMiner
A Gradle plugin that applies code quality plugins and configures them with useful defaults.
Version 0.4.3
Created 17 November 2017.
* Bumps version of 'license-gradle-plugin' to version 0.14.0
* Adds new third party license folder check task. It can be activated to be run before the tests by specifying
```$xslt
codeQuality {
checkThirdPartyLicensesBeforeTest = true
}
```
Add this plugin to your build using the plugins DSL:
plugins {
id("com.rapidminer.code-quality") version "0.4.3"
}
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.3") }
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.3") } } apply(plugin = "com.rapidminer.code-quality")
- Applying plugins to all subprojects .