forked from codecentric/spring-batch-admin-spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (38 loc) · 1.08 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
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.1.RELEASE")
}
}
buildscript {
repositories {
jcenter()
maven {
url "http://repo.spring.io/snapshot"
}
maven {
url "http://repo.spring.io/milestone"
}
}
// ...
}
apply plugin: 'java'
apply plugin: 'spring-boot'
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.boot:spring-boot-devtools")
compile("org.springframework.batch:spring-batch-admin-manager:1.3.0.BUILD-SNAPSHOT") {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-api'
}
runtime 'com.h2database:h2:1.4.193'
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile 'junit:junit'
testRuntime 'com.h2database:h2:1.4.193'
}
repositories {
jcenter()
maven {
url 'http://repo.spring.io/snapshot'
}
}