-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (32 loc) · 1.13 KB
/
build.gradle.kts
File metadata and controls
36 lines (32 loc) · 1.13 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
26
27
28
29
30
31
32
33
34
35
36
buildscript {
dependencies {
classpath(libs.javapoet.get()) // https://github.com/google/dagger/issues/3068
}
}
plugins {
// Specify any plugins here that convention plugins would apply. Convention plugins don't have
// access to the version catalog like we do here, so it keeps things tidier if they only have
// to use the plugin IDs, even if using manual strings for those is a bit ugly (we can't avoid
// that).
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.autonomous.dependencyAnalysis)
}
dependencyAnalysis {
issues {
all {
onUsedTransitiveDependencies {
// Ignore transitive dependency suggestions for now, but we may revisit this later.
severity("ignore")
}
}
}
structure {
bundle("kotest-assertions-core") { includeGroup("io.kotest") }
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.layout.buildDirectory)
}