-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (63 loc) · 2.13 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
65
66
67
68
69
70
71
72
73
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.11.RELEASE"
}
}
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id "io.spring.dependency-management" version "1.0.11.RELEASE"
id 'java'
id 'idea'
}
group = 'springweb.demo'
sourceCompatibility = '1.8'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
jcenter()
mavenCentral()
maven { url 'https://repo.spring.io/plugins-release' }
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
}
dependencies {
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.1.Final'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
compileOnly 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'io.springfox:springfox-swagger2:2.10.5'
implementation 'org.apache.commons:commons-lang3:3.0'
implementation "org.json:json:20180130"
implementation "org.mongodb:mongodb-driver-reactivestreams:4.0.5"
implementation "org.springdoc:springdoc-openapi-webflux-ui:1.4.3"
implementation "org.springdoc:springdoc-openapi-data-rest:1.4.3"
implementation 'org.mapstruct:mapstruct:1.4.1.Final'
implementation 'org.springframework.boot:spring-boot-starter-data-r2dbc'
runtimeOnly 'io.r2dbc:r2dbc-postgresql'
runtimeOnly 'org.postgresql:postgresql'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
developmentOnly 'org.springframework.boot:spring-boot-devtools'
}
test {
useJUnitPlatform()
}
bootJar {
baseName = 'webflux-demo'
version = '1.0.0'
}