-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (28 loc) · 867 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (28 loc) · 867 Bytes
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
26
27
28
29
30
31
plugins {
with(libs.plugins) {
alias(composekit.android.app) apply false
alias(composekit.android.app.compose) apply false
alias(composekit.android.library) apply false
alias(composekit.android.library.compose) apply false
alias(libs.plugins.compose.compiler).apply(false)
alias(composekit.publishing) apply false
alias(composekit.module.generator)
alias(composekit.detekt)
}
}
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath(libs.gradlePlugins.android)
classpath(libs.gradlePlugins.kotlin)
classpath(libs.gradlePlugins.detekt)
classpath(libs.vanniktech.maven.publish)
}
}
tasks.register("clean", Delete::class.java) {
delete(rootProject.layout.buildDirectory)
}