-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (41 loc) · 1.17 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:0.6.1.RELEASE"
}
}
description = "The project's description"
allprojects {
apply plugin: 'eclipse'
apply plugin: 'idea'
group = 'com.company.service'
version = '0.0.1-SNAPSHOT'
}
subprojects {
ext {
springBootVersion = '1.4.1.RELEASE'
}
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://plugins.gradle.org/m2/"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-starter-parent:${springBootVersion}"
}
dependencies {
dependency 'junit:junit:4.12'
dependency 'eu.codearte.catch-exception:catch-exception:1.4.4'
dependency 'org.hamcrest:java-hamcrest:2.0.0.0'
dependency 'org.mockito:mockito-core:1.10.19'
dependency 'org.apache.camel:camel-spring-boot-starter:2.18.0'
dependency 'org.apache.camel:camel-csv:2.18.0'
}
}
}