-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (23 loc) · 818 Bytes
/
Copy pathbuild.gradle
File metadata and controls
30 lines (23 loc) · 818 Bytes
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
apply plugin: 'java'
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
//Spring dependencies
implementation 'org.springframework.boot:spring-boot-starter-web:latest.release'
implementation 'org.springframework:spring-core:latest.release'
//Marshalling/Unmarshalling
implementation 'com.fasterxml.jackson.core:jackson-core:latest.release'
implementation 'com.fasterxml.jackson.core:jackson-databind:latest.release'
implementation 'com.fasterxml.jackson.core:jackson-annotations:latest.release'
//Testing
//Test dependencies
testImplementation ('org.springframework.boot:spring-boot-starter-test:latest.release'){
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}