-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.gradle.kts
71 lines (66 loc) · 2.03 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
61
62
63
64
65
66
67
68
69
70
71
pluginManagement {
repositories {
// maven { url = uri("https://mycompany.nexus/") }
maven { url = uri("https://repo.spring.io/release") }
maven { url = uri("https://repo.spring.io/milestone") }
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
// FIXME: remove after: https://github.com/diffplug/spotless/issues/587
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// classpath("org.eclipse.jgit:org.eclipse.jgit:5.13.1.202206130422-r")
classpath("org.eclipse.jgit:org.eclipse.jgit:6.5.0.202303070854-r")
// For mssql, flyway gradle plugin need driver in `settings.gradle.kts` buildscript
classpath("org.flywaydb:flyway-sqlserver:9.17.0")
}
configurations.classpath {
resolutionStrategy {
// force("org.eclipse.jgit:org.eclipse.jgit:5.13.1.202206130422-r")
force("org.eclipse.jgit:org.eclipse.jgit:6.5.0.202303070854-r")
}
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
// enableFeaturePreview("GRADLE_METADATA")
}
rootProject.name = "micro-apps"
include(
":services:account",
":services:keying",
":services:linking",
// ":services:greeting",
// ":services:person",
":services:chat",
// ":services:entity",
// ":services:redis",
// ":services:webapp",
":services:streams",
":services:wordcount",
":services:spring-demo",
":services:spring-graphql-jpa",
":services:spring-graphql-r2dbc",
":services:spring-graphql-redis",
":services:spring-kafka-functions",
":pipelines:classifier",
":pipelines:ingestion",
":pipelines:wordcount",
":libs:core",
":libs:test",
":libs:proto",
":libs:kbeam",
":libs:spring",
":libs:graphql",
":libs:kstream",
":libs:model",
":libs:grpc",
":libs:pipeline",
":libs:crypto",
":libs:avro"
)