-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
85 lines (82 loc) · 2.04 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
85 lines (82 loc) · 2.04 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@file:Suppress("UnstableApiUsage")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "stove"
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
include(
"lib:stove-bom",
"lib:stove",
"lib:stove-tracing",
"lib:stove-wiremock",
"lib:stove-grpc-mock",
"lib:stove-http",
"lib:stove-grpc",
"lib:stove-kafka",
"lib:stove-couchbase",
"lib:stove-rdbms",
"lib:stove-postgres",
"lib:stove-mysql",
"lib:stove-mssql",
"lib:stove-elasticsearch",
"lib:stove-redis",
"lib:stove-mongodb",
"lib:stove-cassandra",
"lib:stove-dashboard-api",
"lib:stove-dashboard"
)
include(
"test-extensions:stove-extensions-kotest",
"test-extensions:stove-extensions-junit"
)
include(
"starters:container:stove-container",
"starters:ktor:stove-ktor",
"starters:ktor:tests:ktor-test-fixtures",
"starters:ktor:tests:ktor-koin-tests",
"starters:ktor:tests:ktor-di-tests",
"starters:quarkus:stove-quarkus",
"starters:spring:stove-spring",
"starters:spring:stove-spring-kafka",
"starters:spring:tests:spring-test-fixtures",
"starters:spring:tests:spring-2x-tests",
"starters:spring:tests:spring-2x-kafka-tests",
"starters:spring:tests:spring-3x-tests",
"starters:spring:tests:spring-3x-kafka-tests",
"starters:spring:tests:spring-4x-tests",
"starters:spring:tests:spring-4x-kafka-tests",
"starters:micronaut:stove-micronaut",
"starters:process:stove-process"
)
include(
"examples:spring-example",
"examples:spring-standalone-example",
"examples:spring-4x-example",
"examples:ktor-example",
"examples:quarkus-example",
"examples:spring-streams-example",
"examples:micronaut-example"
)
include(
"plugins:stove-tracing-gradle-plugin"
)
dependencyResolutionManagement {
repositories {
mavenCentral()
maven {
url = uri("https://packages.confluent.io/maven/")
}
}
}
plugins {
id("org.danilopianini.gradle-pre-commit-git-hooks").version("2.1.20")
}
gitHooks {
preCommit {
from(rootDir.resolve("pre-commit.sh"))
}
createHooks(overwriteExisting = true)
}