-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (38 loc) · 1.31 KB
/
build.gradle
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
38
39
40
41
42
43
44
45
46
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: 'deps.gradle'
versions.kotlin_coveralls = '2.12.0'
versions.jacoco_tool = '0.8.7'
ext.composeVersion = "1.5.0"
deps.kotlin_coveralls_plugin = "gradle.plugin.org.kt3k.gradle.plugin:coveralls-gradle-plugin:$versions.kotlin_coveralls"
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.android.tools.build:gradle:8.3.1"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22'
classpath "org.jetbrains.kotlin:kotlin-serialization:1.7.10"
classpath deps.kotlin_coveralls_plugin
classpath deps.spotless
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
subprojects {
configurations.all {
resolutionStrategy {
eachDependency { details ->
if ('org.jacoco' == details.requested.group) {
details.useVersion versions.jacoco_tool
}
}
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}