-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
30 lines (22 loc) · 1019 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
24
25
26
27
28
29
30
plugins {
id 'org.springframework.boot' version '1.5.6.RELEASE'
}
group 'net.jackofalltrades'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile(group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.5.6.RELEASE') {
exclude module: 'spring-boot-starter-tomcat'
}
compile(group: 'org.springframework.boot', name: 'spring-boot-starter-jetty', version: '1.5.6.RELEASE')
compile(group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: '1.5.6.RELEASE')
compile(group: 'com.google.guava', name: 'guava', version: '19.0')
compile(group: 'org.apache.tika', name: 'tika-parsers', version: '1.17')
testCompile(group: 'junit', name: 'junit', version: '4.12')
testCompile(group: 'org.mockito', name: 'mockito-core', version: '2.7.19')
testCompile(group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.5.6.RELEASE')
}