-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
executable file
·80 lines (63 loc) · 2.19 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
buildscript {
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
classpath "com.avast.gradle:gradle-docker-compose-plugin:0.12.0"
}
}
apply plugin: 'docker-compose'
subprojects {
apply plugin: "java"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
jcenter()
eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } }
}
dependencies {
implementation(platform("io.eventuate.platform:eventuate-platform-dependencies:$eventuatePlatformVersion"))
testCompile "junit:junit:4.12"
}
}
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_PROXY_VERSION", eventuateProxyImageVersion
removeOrphans = true
mysqlbinlog {
projectName = null
useComposeFiles = ["docker-compose-mysql-binlog.yml"]
removeContainers = project.ext.removeContainers
}
mysqlbinloginfrastructure {
projectName = null
useComposeFiles = ["docker-compose-mysql-binlog.yml"]
startedServices = ["cdc-service", "zipkin"]
removeContainers = project.ext.removeContainers
}
}
subprojects.each {
if (it.name.endsWith("-service") || it.name.endsWith("-gateway")) {
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"]
}