-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
131 lines (102 loc) · 3.86 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "com.avast.gradle:gradle-docker-compose-plugin:$dockerComposePluginVersion"
}
}
apply plugin: 'docker-compose'
subprojects {
apply plugin: "java"
sourceCompatibility = 1.8
targetCompatibility = 1.8
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-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"]
}