-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (24 loc) · 1.15 KB
/
build.gradle
File metadata and controls
26 lines (24 loc) · 1.15 KB
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
test {
useJUnitPlatform()
}
dependencies {
implementation project(':model')
implementation project(':security')
implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.core:jackson-annotations'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework:spring-context'
implementation 'org.slf4j:slf4j-api'
implementation 'ch.qos.logback:logback-classic'
implementation 'ch.qos.logback:logback-core'
testImplementation 'junit:junit'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.junit.platform:junit-platform-suite-api'
testImplementation 'org.springframework.boot:spring-boot-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}