generated from DanySK/Template-for-Kotlin-JVM-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
31 lines (28 loc) · 970 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
/*
* 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.19.2"
id("org.danilopianini.gradle-pre-commit-git-hooks") version "2.0.22"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
rootProject.name = "alchemist-fxui"
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
uploadInBackground = !System.getenv("CI").toBoolean()
}
}
gitHooks {
commitMsg { conventionalCommits() }
preCommit {
tasks("ktlintCheck", "--parallel")
}
createHooks(overwriteExisting = true)
}