You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.6 KiB
101 lines
3.6 KiB
/*
|
|
* Copyright 2022 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
group = "com.google.samples.apps.nowinandroid.buildlogic"
|
|
|
|
// Configure the build-logic plugins to target JDK 17
|
|
// This matches the JDK used to build the project, and is not related to what is running on device.
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
tasks.withType<KotlinCompile>().configureEach {
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.android.gradlePlugin)
|
|
compileOnly(libs.firebase.crashlytics.gradlePlugin)
|
|
compileOnly(libs.firebase.performance.gradlePlugin)
|
|
compileOnly(libs.kotlin.gradlePlugin)
|
|
compileOnly(libs.ksp.gradlePlugin)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("androidApplicationCompose") {
|
|
id = "nowinandroid.android.application.compose"
|
|
implementationClass = "AndroidApplicationComposeConventionPlugin"
|
|
}
|
|
register("androidApplication") {
|
|
id = "nowinandroid.android.application"
|
|
implementationClass = "AndroidApplicationConventionPlugin"
|
|
}
|
|
register("androidApplicationJacoco") {
|
|
id = "nowinandroid.android.application.jacoco"
|
|
implementationClass = "AndroidApplicationJacocoConventionPlugin"
|
|
}
|
|
register("androidLibraryCompose") {
|
|
id = "nowinandroid.android.library.compose"
|
|
implementationClass = "AndroidLibraryComposeConventionPlugin"
|
|
}
|
|
register("androidLibrary") {
|
|
id = "nowinandroid.android.library"
|
|
implementationClass = "AndroidLibraryConventionPlugin"
|
|
}
|
|
register("androidFeature") {
|
|
id = "nowinandroid.android.feature"
|
|
implementationClass = "AndroidFeatureConventionPlugin"
|
|
}
|
|
register("androidLibraryJacoco") {
|
|
id = "nowinandroid.android.library.jacoco"
|
|
implementationClass = "AndroidLibraryJacocoConventionPlugin"
|
|
}
|
|
register("androidTest") {
|
|
id = "nowinandroid.android.test"
|
|
implementationClass = "AndroidTestConventionPlugin"
|
|
}
|
|
register("androidHilt") {
|
|
id = "nowinandroid.android.hilt"
|
|
implementationClass = "AndroidHiltConventionPlugin"
|
|
}
|
|
register("androidRoom") {
|
|
id = "nowinandroid.android.room"
|
|
implementationClass = "AndroidRoomConventionPlugin"
|
|
}
|
|
register("androidFirebase") {
|
|
id = "nowinandroid.android.application.firebase"
|
|
implementationClass = "AndroidApplicationFirebaseConventionPlugin"
|
|
}
|
|
register("androidFlavors") {
|
|
id = "nowinandroid.android.application.flavors"
|
|
implementationClass = "AndroidApplicationFlavorsConventionPlugin"
|
|
}
|
|
register("jvmLibrary") {
|
|
id = "nowinandroid.jvm.library"
|
|
implementationClass = "JvmLibraryConventionPlugin"
|
|
}
|
|
}
|
|
}
|