-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (34 loc) · 1.47 KB
/
Copy pathbuild.gradle
File metadata and controls
43 lines (34 loc) · 1.47 KB
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
buildscript {
ext {
springBootVersion = "1.5.10.RELEASE"
springIntegrationDslVersion = "1.1.2.RELEASE"
springIntegrationVersion = "4.2.5.RELEASE"
gradleVersion = "4.6-rc-2"
}
repositories { jcenter() }
dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion") }
}
apply plugin: "java"
apply plugin: "eclipse"
apply plugin: "org.springframework.boot"
group = "daggerok"
version = "2.0.0"
targetCompatibility = sourceCompatibility = 1.8
repositories { jcenter() }
dependencies {
compile "org.springframework.boot:spring-boot-devtools",
"org.springframework.boot:spring-boot-starter-integration",
"org.springframework.integration:spring-integration-core:$springIntegrationVersion",
"org.springframework.integration:spring-integration-file:$springIntegrationVersion",
"org.springframework.integration:spring-integration-java-dsl:$springIntegrationDslVersion"
testCompile "org.springframework.boot:spring-boot-starter-test",
"org.springframework.integration:spring-integration-test:$springIntegrationVersion"
}
eclipse {
classpath {
containers.remove("org.eclipse.jdt.launching.JRE_CONTAINER")
containers "org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"
}
}
task wrapper(type: Wrapper) { gradleVersion = project.gradleVersion }
defaultTasks "clean", "build"