Remove Spotless references

This commit is contained in:
Adolfo Santiago 2021-11-13 17:52:30 +01:00
parent 609fb301dc
commit 2b75a8bf76
No known key found for this signature in database
GPG key ID: 244D6F9A317B4A65
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,6 @@ buildscript {
// Plugins
classpath(GradlePlugins.gradleVersions)
classpath(GradlePlugins.spotless)
}
}
@ -28,7 +27,9 @@ allprojects {
)
}
apply(plugin = AppPlugins.manesVersions)
apply {
plugin(AppPlugins.manesVersions)
}
tasks.withType<DependencyUpdatesTask> {
gradleReleaseChannel = "current"

View file

@ -5,7 +5,6 @@ object AppPlugins {
const val kotlinExtensions = "kotlin-android-extensions"
const val kotlinParcelize = "kotlin-parcelize"
const val manesVersions = "com.github.ben-manes.versions"
const val spotless = "com.diffplug.gradle.spotless"
}
object ApplicationLibs {