-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (28 loc) · 1.12 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
plugins {
id 'org.springframework.boot' version '2.2.4.RELEASE' //2.2.0.M6' //
}
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
repositories {
jcenter()
maven { url 'https://repo.spring.io/libs-milestone' }
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/release' }
}
dependencies {
compileOnly 'com.fasterxml.jackson.core:jackson-databind'
compileOnly 'com.fasterxml.jackson.module:jackson-module-parameter-names'
compileOnly 'org.springframework.data:spring-data-commons'
compile 'org.apache.commons:commons-lang3'
compile 'org.springframework.boot:spring-boot-autoconfigure'
compile 'org.springframework.boot:spring-boot-starter-webflux'
compile 'org.springframework.boot:spring-boot-starter-log4j2'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'io.projectreactor.netty:reactor-netty:0.9.6.RELEASE' //0.9.1.RC1'
}
//4.1.39.Final
configurations {
all {
exclude group: 'org.springframework.boot', module:'spring-boot-starter-logging'
}
}