-
Notifications
You must be signed in to change notification settings - Fork 244
/
build.gradle
174 lines (132 loc) · 5.61 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import java.time.Duration
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "com.avast.gradle:gradle-docker-compose-plugin:$dockerComposePluginVersion"
classpath "org.springframework.cloud:spring-cloud-contract-gradle-plugin:$springCloudContractDependenciesVersion"
}
}
apply plugin: 'docker-compose'
subprojects {
apply plugin: "java-library"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(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"))
implementation(platform("org.springframework.cloud:spring-cloud-contract-dependencies:$springCloudContractDependenciesVersion"))
testImplementation "junit:junit:4.13.2"
constraints {
implementation "org.springdoc:springdoc-openapi-ui:$springDocOpenApiUiVersion"
}
testImplementation "org.springframework.boot:spring-boot-starter-test"
}
tasks.withType(Copy).all { duplicatesStrategy 'WARN' }
if (System.getenv("GRADLE_CACHE_CHANGING_VERSIONS_IN_MINUTES") != null)
configurations.all {
resolutionStrategy.cacheChangingModulesFor Integer.parseInt(System.getenv("GRADLE_CACHE_CHANGING_VERSIONS_IN_MINUTES")), 'minutes'
}
}
dockerCompose {
environment.put "EVENTUATE_COMMON_VERSION", eventuateCommonImageVersion
environment.put "EVENTUATE_CDC_VERSION", eventuateCdcImageVersion
environment.put "EVENTUATE_SAGA_VERSION", eventuateTramSagasImageVersion
environment.put "EVENTUATE_JAVA_BASE_IMAGE_VERSION", eventuateExamplesBaseImageVersion
environment.put "EVENTUATE_MESSAGING_KAFKA_IMAGE_VERSION", eventuateMessagingKafkaImageVersion
environment.put "SERVICE_IMAGE_VERSION", version
retainContainersOnStartupFailure = true
dockerComposeStopTimeout = Duration.ofSeconds(1)
if (project.ext.has("envFile")) {
environment.put "ENV_FILE", project.ext.envFile
}
mysqlOnly {
projectName = null
useComposeFiles = ["docker-compose-mysql.yml"]
startedServices= ["customer-service-mysql", "order-service-mysql"]
}
mysqlinfrastructure {
projectName = null
useComposeFiles = ["docker-compose-mysql.yml"]
startedServices = ["zipkin", "zookeeper", "kafka", "customer-service-mysql", "order-service-mysql"]
}
mysql {
projectName = null
useComposeFiles = ["docker-compose-mysql.yml"]
startedServices = project.hasProperty('startedServices') ? project.ext.startedServices.split(',') : ["zookeeper", "kafka", "order-service", "customer-service", "api-gateway-service", "cdc-service"]
}
mysqlShardedOutboxes {
environment.put "EVENTUATE_OUTBOX_TABLES", "8"
environment.put "EVENTUATE_CDC_PROFILES", "EventuatePolling"
projectName = null
useComposeFiles = ["docker-compose-mysql.yml"]
if (project.hasProperty('startedServices'))
startedServices= project.ext.startedServices.split(',')
}
postgresinfrastructure {
projectName = null
useComposeFiles = ["docker-compose-postgres.yml"]
startedServices = ["zookeeper", "kafka", "customer-service-postgres", "order-service-postgres"]
}
postgres {
projectName = null
useComposeFiles = ["docker-compose-postgres.yml"]
startedServices = project.hasProperty('startedServices') ? project.ext.startedServices.split(',') : ["zookeeper", "kafka", "order-service", "customer-service", "api-gateway-service", "cdc-service"]
}
postgresOnly {
projectName = null
useComposeFiles = ["docker-compose-postgres.yml"]
startedServices = ["customer-service-postgres","order-service-postgres"]
}
}
tasks*.each { t ->
if (t.name.endsWith("ComposeUp") || t.name.endsWith("ComposeBuild"))
subprojects.each {
if (it.name.endsWith("-service-main")) {
t.dependsOn(":" + it.path + ":assemble")
}
}
}
mysqlComposeUp.dependsOn(mysqlinfrastructureComposeUp)
task clean(type:Delete) {
delete 'build/repo'
}
task buildAndStartServicesMySql(type: GradleBuild) {
tasks = ["mysqlComposeUp"]
}
task endToEndTests(type: GradleBuild) {
tasks = [":end-to-end-tests:endToEndTest"]
dependsOn(":end-to-end-tests:clean")
}
task endToEndTestsUsingDockerCompose(type: GradleBuild) {
startParameter.projectProperties.put("endToEndTestMode", "DockerCompose")
tasks = [":end-to-end-tests:endToEndTest"]
dependsOn(":end-to-end-tests:clean")
}
task endToEndTestsUsingKind(type: GradleBuild) {
startParameter.projectProperties.put("endToEndTestMode", "Kind")
tasks = [":end-to-end-tests:endToEndTest"]
dependsOn(":end-to-end-tests:clean")
}
task stopServicesMySql(type: GradleBuild) {
tasks = ["mysqlComposeDown"]
}
task compileAll(type: GradleBuild) {
tasks = ["endToEndTestClasses", "componentTestClasses", "integrationTestClasses", "testClasses", "assemble"]
}
task testEachService(type: GradleBuild) {
tasks = ["test", "integrationTest", "contractTest", "componentTest"]
}