-
Notifications
You must be signed in to change notification settings - Fork 96
/
build.gradle
63 lines (50 loc) · 1.88 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
plugins {
id 'org.springframework.boot' version '1.5.19.RELEASE'
}
apply plugin: 'java'
apply plugin: 'jacoco'
sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
// Options for naming the JAR file
archivesBaseName = 'trackr-backend'
version = '1.0'
if(project.hasProperty('teamcity')) {
version += '-build-' + project.teamcity['build.number']
} else {
version += '-localbuild'
}
repositories {
mavenCentral()
}
springBoot {
executable = true
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-data-rest"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-mail"
compile "org.springframework.boot:spring-boot-starter-integration"
compile "org.springframework.boot:spring-boot-starter-security"
// not included in boot
compile "org.springframework.integration:spring-integration-mail:4.2.5.RELEASE"
compile "org.springframework.security.oauth:spring-security-oauth2"
compile "com.h2database:h2"
compile "org.postgresql:postgresql"
compile "org.flywaydb:flyway-core"
compile("org.xhtmlrenderer:flying-saucer-pdf-itext5:9.0.6")
compile("org.thymeleaf:thymeleaf")
compileOnly "org.projectlombok:lombok:1.12.4"
testCompileOnly "org.projectlombok:lombok:1.12.4"
annotationProcessor "org.projectlombok:lombok:1.12.4"
testAnnotationProcessor "org.projectlombok:lombok:1.12.4"
compile "org.glassfish:javax.json:1.0"
// Not included by default for Spring Boot 1.5
compile "commons-io:commons-io:2.1"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile("org.echocat.jomon:testing:1.4.3") {
exclude group: "org.mockito"
}
testCompile "org.mockito:mockito-core:1.9.5"
testCompile "com.jayway.jsonpath:json-path"
testCompile "org.apache.httpcomponents:httpclient"
}