-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
49 lines (39 loc) · 1.69 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
plugins {
id 'java'
id 'java-library'
id 'idea'
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version "1.0.9.RELEASE"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
}
version = '1.0.0'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
implementation group: 'com.google.guava', name: 'guava', version: '28.0-jre'
implementation group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.4'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.10'
implementation group: 'redis.clients', name: 'jedis', version: '3.1.0'
implementation group: 'dnsjava', name: 'dnsjava', version: '2.1.9'
implementation group: 'io.projectreactor', name: 'reactor-core', version: '3.3.8.RELEASE'
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.66'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// junit5
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.13.2'
}
test {
useJUnitPlatform()
}