-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (34 loc) · 1.65 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
plugins {
id 'org.springframework.boot' version "${springBootVersion}"
id 'io.spring.dependency-management' version "${springDependencyManagementVersion}"
id 'java'
id 'maven-publish'
}
group = 'com.stormeye'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web:${springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-webflux:${springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-aop:${springBootVersion}"
implementation "org.springframework.retry:spring-retry:${springRetryVerion}"
implementation "org.springframework.kafka:spring-kafka:${kafkaSpringVersion}"
implementation "org.apache.kafka:kafka-streams:${kafkaVersion}"
implementation "io.projectreactor.kafka:reactor-kafka:${reactorKafkaVersion}"
implementation "org.apache.commons:commons-configuration2:${commonsConfigurationVersion}"
implementation "org.apache.commons:commons-text:${commonsTextVersion}"
implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
implementation "org.apache.httpcomponents:httpclient:${httpclientversion}"
implementation "log4j:log4j:${log4jVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testImplementation "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"
testImplementation "io.projectreactor:reactor-test:${reactorTestVersion}"
testImplementation "org.springframework.kafka:spring-kafka-test:${kafkaSpringVersion}"
testImplementation "com.squareup.okhttp3:mockwebserver:${mockwebserverVersion}"
}
test {
useJUnitPlatform()
}