-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
settings.gradle.kts
60 lines (54 loc) · 1.8 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("com.gradle.develocity") version "3.19"
}
develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/terms-of-service")
termsOfUseAgree.set("yes")
publishing {
val isCI = providers.environmentVariable("CI").isPresent
onlyIf { isCI }
}
tag("CI")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
google()
exclusiveContent {
forRepository {
ivy("https://nodejs.org/dist/") {
name = "Node Distributions at $url"
patternLayout { artifact("v[revision]/[artifact](-v[revision]-[classifier]).[ext]") }
metadataSources { artifact() }
content { includeModule("org.nodejs", "node") }
}
}
filter { includeGroup("org.nodejs") }
}
exclusiveContent {
forRepository {
ivy("https://github.com/WebAssembly/binaryen/releases/download") {
name = "Binaryen Distributions at $url"
patternLayout { artifact("version_[revision]/[module]-version_[revision]-[classifier].[ext]") }
metadataSources { artifact() }
content { includeModule("com.github.webassembly", "binaryen") }
}
}
filter { includeGroup("com.github.webassembly") }
}
}
}
rootProject.name = "routing-compose"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":integrationTest")
include(":integrationTest:hashRouterTest")
include(":integrationTest:browserRouterTest")