-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (52 loc) · 2.11 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
plugins {
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'org.speech4j'
version = '0.0.1'
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
maven { url 'https://repo.spring.io/libs-milestone' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.junit.jupiter:junit-jupiter:5.4.2'
annotationProcessor group: 'org.springframework.boot', name: 'spring-boot-configuration-processor'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client:2.2.7.RELEASE'
implementation 'org.modelmapper:modelmapper:2.3.7'
implementation 'org.hibernate:hibernate-validator:6.1.5.Final'
implementation 'io.jsonwebtoken:jjwt-api:0.11.1'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.1'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.1'
implementation 'org.apache.commons:commons-lang3:3.10'
// R2DBC
implementation 'io.r2dbc:r2dbc-spi:0.8.1.RELEASE'
implementation 'io.r2dbc:r2dbc-postgresql:0.8.2.RELEASE'
implementation 'org.springframework.data:spring-data-r2dbc:1.1.0.RELEASE'
// Test dependencies
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.4.2'
)
testRuntime(
'org.junit.jupiter:junit-jupiter-engine:5.4.2',
'org.junit.vintage:junit-vintage-engine:5.4.2'
)
testCompile('io.projectreactor:reactor-test')
testCompile('org.assertj:assertj-core:3.11.1')
// Lombok dependencies
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testCompile 'org.projectlombok:lombok'
testImplementation 'org.projectlombok:lombok'
}
test {
useJUnitPlatform()
}