forked from pinterest/ktlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
56 lines (49 loc) · 1.31 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
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("STABLE_CONFIGURATION_CACHE")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
// ktlint-core module is no longer used internally in the ktlint project except for backwards compatibility
":ktlint-core",
":ktlint-api-consumer",
":ktlint-bom",
":ktlint-cli",
":ktlint-cli-reporter-baseline",
":ktlint-cli-reporter-checkstyle",
":ktlint-cli-reporter-core",
":ktlint-cli-reporter-format",
":ktlint-cli-reporter-json",
":ktlint-cli-reporter-sarif",
":ktlint-cli-reporter-html",
":ktlint-cli-reporter-plain",
":ktlint-cli-reporter-plain-summary",
":ktlint-cli-ruleset-core",
":ktlint-logger",
":ktlint-rule-engine",
":ktlint-rule-engine-core",
":ktlint-ruleset-standard",
":ktlint-ruleset-template",
":ktlint-test",
":ktlint-test-ruleset-provider-v2-deprecated",
)