-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (33 loc) · 1.04 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_ui_version = '1.2.0'
}
}
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'org.jetbrains.kotlin.jvm' version '1.5.31' apply false
id "scabbard.gradle" version "0.5.0"
}
apply plugin: "scabbard.gradle"
scabbard {
fullBindingGraphValidation true
failOnError true
enabled false
outputFormat "svg"
}
allprojects {
configurations.all {
resolutionStrategy.eachDependency {
if (requested.group == "com.github.kittinunf.result" && requested.name == "result" && requested.version == "3.0.0") {
useVersion("3.0.1")
because("Transitive dependency of Scabbard, currently not available on mavenCentral()")
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}