-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
44 lines (29 loc) · 1.09 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
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.6/userguide/multi_project_builds.html in the Gradle documentation.
*/
rootProject.name = "piper-kt"
pluginManagement { includeBuild("build-logic") }
dependencyResolutionManagement { repositories { mavenCentral() } }
plugins {
id("org.danilopianini.gradle-pre-commit-git-hooks") version "2.0.16"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
gitHooks {
// Configuration
commitMsg { conventionalCommits() }
preCommit { tasks("classes", "ktfmtCheck", "detekt", "spotlessCheck", "--parallel") }
createHooks(overwriteExisting = true) // actual hooks creation
}
include("architecture-tests")
include("bdd")
include("commons")
include("events")
include("users-service")
include("servers-service")
include("multimedia-service")
include("friendships-service")
include("notifications-service")
include("frontend-service")