-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
62 lines (48 loc) · 1.04 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
61
62
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
google()
maven { setUrl("https://jitpack.io") }
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
id("org.danilopianini.gradle-pre-commit-git-hooks") version "2.0.15"
id("com.gradle.develocity") version "3.18.2"
}
buildCache {
local {
isEnabled = true
directory = File(rootProject.projectDir, ".gradle/build-cache")
}
}
develocity { buildScan { termsOfUseAgree.set("true") } }
gitHooks {
preCommit {
from {
"""
./gradlew spotlessApply
git add .
"""
}
}
commitMsg {
conventionalCommits {
defaultTypes()
types("format")
}
}
createHooks(true)
}
rootProject.name = "Visual"
include("document")
include("visual-core")
include("visual-app")
include("visual-database")
include("visual-data-structure")
include("visual-i18n")
include("visual-collaboration-server")
include("visual-editor")