-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (49 loc) · 2.19 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
group 'br.com.alura.aluraflix'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-jetty')
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
implementation('org.springframework:spring-context-indexer') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
exclude group: 'ch.qos.logback'
}
implementation('org.springframework.boot:spring-boot-starter-data-mongodb') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
exclude group: 'ch.qos.logback'
}
implementation('org.springframework.boot:spring-boot-starter-actuator') {
exclude group: 'ch.qos.logback'
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
implementation('org.springframework.boot:spring-boot-starter-security:2.5.4')
implementation('io.jsonwebtoken:jjwt:0.9.1')
implementation('javax.xml.bind:jaxb-api:2.1')
implementation('com.google.guava:guava:30.1.1-jre')
implementation('org.springdoc:springdoc-openapi-ui:1.5.11')
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
implementation('org.mongodb:mongodb-driver-sync:4.2.2')
implementation('org.springframework.boot:spring-boot-starter-validation')
compile 'com.google.guava:guava:30.1-jre'
compile 'com.google.code.gson:gson:2.8.6'
compile 'org.apache.commons:commons-lang3:3.11'
compile 'org.apache.commons:commons-collections4:4.4'
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('de.flapdoodle.embed:de.flapdoodle.embed.mongo:3.0.0')
testImplementation ('junit:junit:4.13')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.7.0')
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.7.0')
}
test {
useJUnitPlatform()
}