-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (37 loc) · 1.23 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
plugins {
id 'org.springframework.boot' version '2.2.3.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.jiayee'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'mysql:mysql-connector-java'
runtimeOnly 'org.postgresql:postgresql'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
// Spring Boot Configuration Annotation Processor not found in classpath
compile "org.springframework.boot:spring-boot-configuration-processor"
// Immutables
compile 'org.immutables:builder:2.8.2'
compile 'org.immutables:gson:2.8.2'
compile 'org.immutables:value:2.8.2'
annotationProcessor 'org.immutables:value:2.8.2'
// Google Guava
compile 'com.google.guava:guava:28.2-jre'
// Elasticsearch
compile 'org.elasticsearch:elasticsearch:7.6.0'
compile 'org.elasticsearch.client:elasticsearch-rest-client:7.6.0'
compile 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.6.0'
// Kafka
compile 'org.apache.kafka:kafka_2.13:2.4.0'
}
test {
useJUnitPlatform()
}