-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
23 lines (18 loc) · 842 Bytes
/
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
plugins {
id 'java'
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
apply plugin: 'war'
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.2.0'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.0.4.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: '2.0.4.RELEASE'
compile group: 'org.springframework', name: 'spring-web', version: '4.3.1.RELEASE'
testCompile group: 'org.springframework', name: 'spring-test', version: '4.3.1.RELEASE'
compile group: 'com.github.derjust', name: 'spring-data-dynamodb', version: '5.0.3'
compile group: 'com.amazonaws', name:'aws-java-sdk-dynamodb', version:'1.11.396'
}