Approval confirmation
Approval confirmation
Delete plugin confirmation
To confirm the plugin deletion insert pluginId and author name
Ned Twigg
com.diffplug.gradle.spotless
PluginId
Author
com.diffplug.gradle.spotless
Owner: Ned Twigg
Spotless: Keep your code spotless with Gradle
https://github.com/diffplug/spotless
Sources: https://github.com/diffplug/spotless
Version 3.28.0
3.28.0
Created 20 March 2020.
Spotless - keep your code spotless with Gradle
Other versions
- 7.0.0.BETA4
- 7.0.0.BETA3
- 7.0.0.BETA2
- 7.0.0.BETA1
- 6.25.0
- 6.24.0
- 6.23.3
- 6.23.2
- 6.23.1
- 6.23.0
- 6.22.0
- 6.21.0
- 6.20.0
- 6.19.0
- 6.18.0
- 6.17.0
- 6.16.0
- 6.15.0
- 6.14.1
- 6.14.0
- 6.13.0
- 6.12.1
- 6.12.0
- 6.11.0
- 6.10.0
- 6.9.1
- 6.9.0
- 6.8.0
- 6.7.2
- 6.7.1
- 6.7.0
- 6.6.1
- 6.6.0
- 6.5.2
- 6.5.1
- 6.5.0
- 6.4.2
- 6.4.1
- 6.4.0
- 6.3.0
- 6.2.2
- 6.2.1
- 6.2.0
- 6.1.2
- 6.1.1
- 6.1.0
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.17.1
- 5.17.0
- 5.16.0
- 5.15.2
- 5.15.1
- 5.15.0
- 5.14.3
- 5.14.2
- 5.14.1
- 5.14.0
- 5.13.0
- 5.12.5
- 5.12.4
- 5.12.3
- 5.12.2
- 5.12.1
- 5.12.0
- 5.11.1
- 5.11.0
- 5.10.2
- 5.10.1
- 5.10.0
- 5.9.0
- 5.8.2
- 5.8.1
- 5.8.0
- 5.7.0
- 5.6.1
- 5.6.0
- 5.5.2
- 5.5.1
- 5.5.0
- 5.4.0
- 5.3.0
- 5.2.0
- 5.1.2
- 5.1.1
- 5.1.0
- 5.0.0
- 4.5.1
- 4.5.0
- 4.4.0
- 4.3.1
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.0
- 4.0.1
- 4.0.0
- 3.30.0
- 3.29.0
- 3.28.1
- 3.27.2
- 3.27.1
- 3.27.0
- 3.26.1
- 3.26.0
- 3.25.0
- 3.24.3
- 3.24.2
- 3.24.1
- 3.24.0
- 3.23.1
- 3.23.0
- 3.22.0
- 3.21.1
- 3.21.0
- 3.20.0
- 3.19.0
- 3.18.0
- 3.17.0
- 3.16.0
- 3.15.0
- 3.14.0
- 3.13.0
- 3.12.0
- 3.10.0
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.2
- 3.5.1
- 3.5.0
- 3.4.1
- 3.4.0
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 3.0.0.RC2
- 3.0.0.RC1
- 3.0.0.BETA3
- 3.0.0.BETA2
- 2.4.1
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.3.0-SNAPSHOT
- 1.2.0
- 1.2.0-SNAPSHOT
- 1.2-SNAPSHOT
- 1.1
- 1.1-SNAPSHOT
Add this plugin to your build using the plugins DSL:
plugins {
id("com.diffplug.gradle.spotless") version "3.28.0"
}
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.diffplug.gradle.spotless:com.diffplug.gradle.spotless.gradle.plugin:3.28.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.diffplug.gradle.spotless") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.diffplug.gradle.spotless:com.diffplug.gradle.spotless.gradle.plugin:3.28.0") } } apply(plugin = "com.diffplug.gradle.spotless")
- Applying plugins to all subprojects .