-
Notifications
You must be signed in to change notification settings - Fork 46
/
settings.gradle.kts
60 lines (57 loc) · 1.75 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
/*
* Copyright (C) 2010-2022, Danilo Pianini and contributors
* listed, for each module, in the respective subproject's build.gradle.kts file.
*
* This file is part of Alchemist, and is distributed under the terms of the
* GNU General Public License, with a linking exception,
* as described in the file LICENSE in the Alchemist distribution's top directory.
*/
plugins {
id("com.gradle.develocity") version "3.18.1"
id("org.danilopianini.gradle-pre-commit-git-hooks") version "2.0.13"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
include(
"alchemist-api",
"alchemist-cognitive-agents",
"alchemist-engine",
"alchemist-euclidean-geometry",
"alchemist-full",
"alchemist-graphql",
"alchemist-graphql-surrogates",
"alchemist-grid",
"alchemist-implementationbase",
"alchemist-incarnation-protelis",
"alchemist-incarnation-sapere",
"alchemist-incarnation-scafi",
"alchemist-incarnation-biochemistry",
"alchemist-loading",
"alchemist-maintenance-tooling",
"alchemist-maps",
"alchemist-multivesta-adapter",
"alchemist-physics",
"alchemist-sapere-mathexp",
"alchemist-smartcam",
"alchemist-swingui",
"alchemist-sapere-mathexp",
"alchemist-smartcam",
"alchemist-test",
"alchemist-ui-tooling",
"alchemist-swingui",
"alchemist-web-renderer",
)
rootProject.name = "alchemist"
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
uploadInBackground = !System.getenv("CI").toBoolean()
}
}
gitHooks {
commitMsg { conventionalCommits() }
preCommit {
tasks("ktlintCheck", "checkScalafmt", "--parallel")
}
createHooks(overwriteExisting = true)
}