-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (50 loc) · 1.82 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
plugins {
id 'java'
id 'org.springframework.boot' apply false
id 'io.spring.dependency-management'
}
allprojects {
group = projectGroup
version = applicationVersion
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
}
def springProjects = [':producer', ':transformer-server', ':consumer']
springProjects.each {projectPath ->
project(projectPath) {
dependencies {
// start spring boot web
implementation 'org.springframework.boot:spring-boot-starter-web'
// start spring cloud stream
implementation 'org.springframework.cloud:spring-cloud-stream'
//start spring cloud kafka
implementation 'org.springframework.cloud:spring-cloud-stream-binder-kafka'
//start spring cloud rabbit-mq
implementation 'org.springframework.cloud:spring-cloud-stream-binder-rabbit'
//spring cloud-aws-starter
implementation 'io.awspring.cloud:spring-cloud-aws-starter-secrets-manager'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.cloud:spring-cloud-stream-test-binder'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
mavenBom "io.awspring.cloud:spring-cloud-aws-dependencies:${springCloudAwsVersion}"
}
}
tasks.named('test') {
useJUnitPlatform()
}
}
}