-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 1.03 KB
/
build.gradle
File metadata and controls
44 lines (36 loc) · 1.03 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
description = 'Spring Shell Example'
apply plugin: 'base'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
repositories {
mavenLocal()
maven {
url "https://dcartifactory.service.dev/artifactory/csp-platform/"
}
maven {
url "https://dcartifactory.service.dev/artifactory/sbos-csp-libs/"
}
maven {
url "https://dcartifactory.service.dev/artifactory/plugins-release"
}
maven {
url "https://dcartifactory.service.dev/artifactory/jcenter"
}
}
dependencies {
compile "org.springframework.shell:spring-shell:$springShellVersion"
testCompile "junit:junit:$junitVersion"
compile "log4j:log4j:$log4jVersion"
compile "com.google.guava:guava:19.0"
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.4'
}
mainClassName = "org.springframework.shell.Bootstrap"
defaultTasks 'installApp'
run {
standardInput = System.in
}
task wrapper(type: Wrapper) {
description = 'Generates gradlew[.bat] scripts'
gradleVersion = '1.2'
}