-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
34 lines (29 loc) · 1009 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
/*
* Copyright (C) 2024, Danilo Pianini and contributors listed in the project's build.gradle.kts file.
*
* This file is part of Protelis, and is distributed under the terms of the GNU General Public License,
* with a linking exception, as described in the file LICENSE.txt in this project's top directory.
*/
plugins {
id("com.gradle.develocity") version "3.19.1"
id("org.danilopianini.gradle-pre-commit-git-hooks") version "2.0.20"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
include("protelis.parser")
include("protelis.parser.ide")
include("protelis.parser.web")
rootProject.name = "protelis.parser.parent"
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
uploadInBackground = !System.getenv("CI").toBoolean()
}
}
gitHooks {
commitMsg { conventionalCommits() }
preCommit {
tasks("build", "--parallel")
}
createHooks(overwriteExisting = true)
}