forked from jscancella/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (48 loc) · 1.54 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.0.1.RELEASE"
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
apply plugin: 'spring-boot'
apply plugin: "jacoco"
mainClassName = "com.scancella.hermes.Main"
jacocoTestReport {
reports {
xml.enabled false
csv.enabled false
html.destination "${buildDir}/jacocoHtml"
}
}
repositories {
mavenCentral()
//example for when I implement my own repository, i.e. Nexus
//ivy {
// url "http://localhost:8081/nexus/content/groups/public"
//}
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web:1.1.5.RELEASE",
'org.quartz-scheduler:quartz:1.8.6',
"org.springframework.boot:spring-boot-starter-actuator:1.1.5.RELEASE",
'org.springframework.boot:spring-boot-starter-thymeleaf:1.1.5.RELEASE',
'org.springframework.integration:spring-integration-core:4.0.3.RELEASE',
'org.springframework.integration:spring-integration-ftp:4.0.3.RELEASE',
'org.springframework.integration:spring-integration-stream:4.0.3.RELEASE',
'commons-collections:commons-collections:3.0',
'org.apache.httpcomponents:httpclient:4.1.1',
'commons-lang:commons-lang:2.6',
'org.apache.commons:commons-io:1.3.2'
testCompile "junit:junit:4.11",
'org.springframework:spring-test:4.0.3.RELEASE',
'org.mockito:mockito-all:1.9.5'
}
task dumpDependencies(type: Copy) {
into "$buildDir/dumpedDependencies"
from configurations.runtime
}