-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (35 loc) · 799 Bytes
/
build.gradle
File metadata and controls
37 lines (35 loc) · 799 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
32
33
34
35
36
37
plugins {
id 'org.jetbrains.kotlin.jvm' apply false
id 'com.autonomousapps.testkit' apply false
id 'com.gradle.plugin-publish' apply false
id 'com.vanniktech.maven.publish' apply false
id 'com.android.lint' apply false
id 'org.jetbrains.intellij.platform' apply false
}
group = 'com.fueledbycaffeine'
dependencyAnalysis {
reporting {
printBuildHealth true
}
issues {
all {
onAny {
severity 'fail'
}
}
}
structure {
bundle('jupiter') {
primary libs.junit.jupiter
includeGroup 'org.junit.jupiter'
}
bundle('testkit') {
primary libs.autonomousapps.testkit
includeDependency libs.autonomousapps.testkit.support
includeDependency libs.truth
}
bundle('moshi') {
primary libs.moshi
}
}
}