Convert build-logic to a proper included build
This commit is contained in:
parent
cbadee43cd
commit
c2e2e4f842
6 changed files with 10 additions and 7 deletions
3
build-logic/android-plugins/build.gradle.kts
Normal file
3
build-logic/android-plugins/build.gradle.kts
Normal file
|
@ -0,0 +1,3 @@
|
|||
plugins { `kotlin-dsl` }
|
||||
|
||||
dependencies { implementation(libs.build.agp) }
|
1
build-logic/automation-plugins/build.gradle.kts
Normal file
1
build-logic/automation-plugins/build.gradle.kts
Normal file
|
@ -0,0 +1 @@
|
|||
plugins { `kotlin-dsl` }
|
|
@ -1,3 +0,0 @@
|
|||
plugins { `kotlin-dsl` }
|
||||
|
||||
dependencies { implementation(libs.build.spotless) }
|
5
build-logic/kotlin-plugins/build.gradle.kts
Normal file
5
build-logic/kotlin-plugins/build.gradle.kts
Normal file
|
@ -0,0 +1,5 @@
|
|||
plugins { `kotlin-dsl` }
|
||||
|
||||
dependencies {
|
||||
implementation(libs.build.spotless)
|
||||
}
|
|
@ -13,6 +13,7 @@ spotless {
|
|||
kotlinGradle {
|
||||
ktfmt().googleStyle()
|
||||
target("**/*.kts")
|
||||
targetExclude("**/build/")
|
||||
}
|
||||
format("xml") {
|
||||
target("**/*.xml")
|
|
@ -1,7 +1,3 @@
|
|||
rootProject.name = "build-logic"
|
||||
|
||||
enableFeaturePreview("VERSION_CATALOGS")
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google()
|
||||
|
|
Loading…
Reference in a new issue