-
Notifications
You must be signed in to change notification settings - Fork 12
/
settings.gradle.kts
42 lines (37 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
35
36
37
38
39
40
41
42
dependencyResolutionManagement {
// This should be FAIL_ON_PROJECT_REPOS; we're using PREFER_SETTINGS
// until https://github.com/gradle/gradle/issues/15732 is fixed.
@Suppress("UnstableApiUsage")
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
// Needed for jepsen/clojure
maven(uri("https://repo.clojars.org"))
// Needed for com.github.nitsanw:HdrLogProcessing
maven(uri("https://jitpack.io"))
// see https://github.com/node-gradle/gradle-node-plugin/blob/6f03c21e7e51189885a384ab533ee191c971f7dc/docs/faq.md#is-this-plugin-compatible-with-centralized-repositories-declaration
ivy {
name = "Node.js"
setUrl("https://nodejs.org/dist/")
patternLayout {
artifact("v[revision]/[artifact](-v[revision]-[classifier]).[ext]")
}
metadataSources {
artifact()
}
content {
includeModule("org.nodejs", "node")
}
}
}
}
rootProject.name = "fallout"
includeBuild("build-logic/common-conventions")
includeBuild("build-logic/plugins")
includeBuild("build-logic/fallout-conventions")
include("cassandra-all-shaded")
include("jepsen")
include(":tools:artifact-checkers:no-op")
include(":tools:artifact-checkers:mttr")
include(":tools:artifact-checkers:histo-freq")