-
Notifications
You must be signed in to change notification settings - Fork 299
/
build.gradle
157 lines (120 loc) · 4.32 KB
/
build.gradle
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "com.avast.gradle:gradle-docker-compose-plugin:$dockerComposePluginVersion"
}
}
plugins {
id("org.openrewrite.rewrite") version("6.5.10")
}
rewrite {
activeRecipe("org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_0")
}
repositories {
mavenCentral()
}
dependencies {
rewrite("org.openrewrite.recipe:rewrite-spring:5.1.5")
}
apply plugin: 'docker-compose'
subprojects {
apply plugin: "java-library"
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenCentral()
eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } }
}
dependencies {
implementation(platform("io.eventuate.platform:eventuate-platform-dependencies:$eventuatePlatformVersion"))
implementation(platform("org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"))
implementation(platform("org.springframework.boot:spring-boot-dependencies:$springBootVersion"))
testImplementation "junit:junit:4.13.2"
constraints {
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:$springDocOpenApiUiVersion")
}
}
}
dockerCompose {
environment.put "EVENTUATE_COMMON_VERSION", eventuateCommonImageVersion
environment.put "EVENTUATE_CDC_VERSION", eventuateCdcImageVersion
environment.put "EVENTUATE_CDC_KAFKA_ENABLE_BATCH_PROCESSING", eventuateCdcKafkaEnableBatchProcessing
environment.put "EVENTUATE_JAVA_BASE_IMAGE_VERSION", eventuateExamplesBaseImageVersion
environment.put "EVENTUATE_MESSAGING_KAFKA_IMAGE_VERSION", eventuateMessagingKafkaImageVersion
environment.put "SERVICE_IMAGE_VERSION", version
if (project.ext.has("envFile")) {
environment.put "ENV_FILE", project.ext.envFile
}
removeOrphans = true
retainContainersOnStartupFailure = true
dockerComposeStopTimeout = java.time.Duration.ofSeconds(1)
mysqlbinlog {
projectName = null
useComposeFiles = ["docker-compose-mysql-binlog.yml"]
}
mysqlbinloginfrastructure {
projectName = null
useComposeFiles = ["docker-compose-mysql-binlog.yml"]
startedServices = ["cdc-service", "zipkin", "zookeeper", "mysql"]
}
mysqlbinlogtextsearch {
projectName = null
useComposeFiles = ["docker-compose-snapshots-mysql-binlog.yml"]
}
mysqlbinlogtextsearchcustomersandorders {
projectName = null
useComposeFiles = ["docker-compose-snapshots-mysql-binlog.yml"]
startedServices = ["order-service", "customer-service"]
}
mysqlbinloginfrastructuretextsearch {
projectName = null
useComposeFiles = ["docker-compose-snapshots-mysql-binlog.yml"]
startedServices = ["cdc-service", "elasticsearch"]
}
mssqlpolling {
projectName = null
useComposeFiles = ["docker-compose-mssql-polling.yml"]
removeOrphans = true
}
mssqlpollinginfrastructure {
projectName = null
useComposeFiles = ["docker-compose-mssql-polling.yml"]
startedServices = ["cdc-service"]
}
postgreswal {
projectName = null
useComposeFiles = ["docker-compose-postgres-wal.yml"]
}
postgreswalinfrastructure {
projectName = null
useComposeFiles = ["docker-compose-postgres-wal.yml"]
startedServices = ["cdc-service"]
}
}
subprojects.each {
if (it.name.endsWith("-service") || it.name.endsWith("-gateway")) {
mysqlbinlogComposeBuild.dependsOn(":" + it.name + ":assemble")
mysqlbinlogComposeUp.dependsOn(":" + it.name + ":assemble")
}
}
mysqlbinlogComposeUp.dependsOn(mysqlbinloginfrastructureComposeUp)
task buildAndStartServicesMySql(type: GradleBuild) {
tasks = ["mysqlbinlogComposeUp"]
}
task endToEndTests(type: GradleBuild) {
tasks = [":end-to-end-tests:test"]
}
endToEndTests.dependsOn(mysqlbinlogComposeUp)
endToEndTests.dependsOn(":end-to-end-tests:cleanTest")
task stopServicesMySql(type: GradleBuild) {
tasks = ["mysqlbinlogComposeDown"]
}
task preCommitCheck {
}
task circleciConfigValidate(type: Exec) {
commandLine 'circleci', 'config', 'validate'
}
preCommitCheck.finalizedBy(circleciConfigValidate)