forked from pinterest/ktlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
48 lines (41 loc) · 948 Bytes
/
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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
includeBuild("build-logic")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
plugins {
`gradle-enterprise`
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
}
}
rootProject.name = "ktlint-root"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":ktlint",
":ktlint-core",
":ktlint-reporter-baseline",
":ktlint-reporter-checkstyle",
":ktlint-reporter-format",
":ktlint-reporter-json",
":ktlint-reporter-sarif",
":ktlint-reporter-html",
":ktlint-reporter-plain",
":ktlint-ruleset-experimental",
":ktlint-ruleset-standard",
":ktlint-ruleset-template",
":ktlint-ruleset-test",
":ktlint-test",
":ktlint-test-logging",
)