-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
39 lines (34 loc) · 1.15 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
buildscript {
apply from: rootProject.file('gradle/repositories.gradle'), to: buildscript
dependencies {
classpath libs.gradle.cinescout.android
classpath libs.gradle.cinescout.detekt
classpath libs.gradle.cinescout.jvm
classpath libs.gradle.cinescout.kmp
classpath libs.gradle.cinescout.moduleCatalog
classpath libs.gradle.firebase.crashlytics
classpath libs.gradle.firebase.performance
classpath libs.gradle.gms
classpath libs.gradle.kotlin.serialization
// classpath libs.gradle.kover
classpath libs.gradle.ksp
classpath libs.gradle.molecule
// classpath libs.gradle.paparazzi
classpath libs.gradle.simpleFlank
classpath libs.gradle.sqlDelight
}
}
allprojects {
apply from: rootProject.file('gradle/repositories.gradle')
if (project.name != 'rules') {
apply plugin: 'cinescout.detekt'
}
apply plugin: 'cinescout.module-catalog'
}
subprojects {
apply plugin: 'com.google.devtools.ksp'
tasks.withType(Test).configureEach {
useJUnitPlatform()
}
}
wrapper.distributionType = Wrapper.DistributionType.ALL