-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
25 lines (23 loc) · 1.02 KB
/
build.gradle.kts
File metadata and controls
25 lines (23 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* Copyright (c) 2025, Alexey Illarionov and the compose-debuglayout project contributors.
* Please see the AUTHORS file for details.
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
* SPDX-License-Identifier: Apache-2.0
*/
plugins {
alias(libs.plugins.android.library) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.dokka) apply false
alias(libs.plugins.gradle.maven.publish.plugin.base) apply false
alias(libs.plugins.jetbrains.compose) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.multiplatform) apply false
alias(libs.plugins.kotlinx.binary.compatibility.validator) apply false
id("at.released.debuglayout.gradle.lint.detekt")
id("at.released.debuglayout.gradle.lint.spotless")
}
tasks.register("styleCheck") {
group = "Verification"
description = "Runs code style checking tools (excluding tests and Android Lint)"
dependsOn("detektCheck", "spotlessCheck")
}