-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
34 lines (31 loc) · 1.42 KB
/
settings.gradle.kts
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
pluginManagement {
repositories {
maven {
url = uri("https://raw.githubusercontent.com/a-sit-plus/gradle-conventions-plugin/mvn/repo")
name = "aspConventions"
}
mavenCentral()
gradlePluginPortal()
maven("https://s01.oss.sonatype.org/content/repositories/snapshots") //KOTEST snapshot
}
}
if (System.getProperty("regressionTest") == "true") {
includeBuild("../signum") {
dependencySubstitution {
substitute(module("at.asitplus.wallet:indispensable")).using(project(":indispensable"))
substitute(module("at.asitplus.signum:indispensable-josef")).using(project(":indispensable-josef"))
substitute(module("at.asitplus.signum:indispensable-cosef")).using(project(":indispensable-cosef"))
substitute(module("at.asitplus.signum:supreme")).using(project(":supreme"))
}
}
includeBuild("..") {
dependencySubstitution {
substitute(module("at.asitplus.wallet:vck")).using(project(":vck"))
substitute(module("at.asitplus.wallet:vck-openid")).using(project(":vck-openid"))
substitute(module("at.asitplus.wallet:vck-openid-ktor")).using(project(":vck-openid-ktor"))
substitute(module("at.asitplus.wallet:openid-data-classes")).using(project(":openid-data-classes"))
}
}
}
rootProject.name = "mobile-driving-licence"
include(":mobiledrivinglicence")