forked from spring-attic/spring-hadoop-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
31 lines (25 loc) · 1023 Bytes
/
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
description = 'Spring Hadoop Admin'
allprojects {
group = "org.springframework.data.hadoop"
apply plugin: 'base'
apply plugin: 'java'
repositories {
//mavenLocal()
mavenCentral()
maven { url "http://repo.springsource.org/snapshot" }
maven { url "http://repo.springsource.org/release" }
maven { url "http://repo.springsource.org/milestone" }
maven { url "http://mvnrepository.com/artifact" }
}
dependencies {
compile "commons-configuration:commons-configuration:$commonsConfigVersion"
compile "org.codehaus.jackson:jackson-core-asl:$jacksonVersion"
compile "org.codehaus.jackson:jackson-mapper-asl:$jacksonVersion"
compile "org.springframework.batch:spring-batch-admin-manager:$springBatchAdminVersion"
compile "org.springframework.batch:spring-batch-admin-resources:$springBatchAdminVersion"
compile "org.apache.hadoop:hadoop-core:$hadoopVersion"
testCompile "junit:junit:$junitVersion"
testCompile "org.springframework:spring-test:$springVersion"
}
}
defaultTasks 'clean', 'build'