forked from monster28g/SpringXD-Module-Sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (39 loc) · 1.11 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
group = 'com.custom.transformer'
version = '1.0.0.BUILD-SNAPSHOT'
description = "Spring XD Tweet Transformer Module"
sourceCompatibility = 1.8
targetCompatibility = 1.8
ext {
springXdVersion = '1.3.1.RELEASE'
}
configurations {
messageBus {
transitive = false
}
}
dependencies {
compile group: 'org.influxdb:influxdb-java:2.1'
compile("org.springframework.xd:spring-xd-dirt:${project.springXdVersion}") {
exclude group: 'org.springframework.xd', module: 'spring-xd-hadoop'
exclude group: 'org.springframework.xd', module: 'spring-xd-spark-streaming'
}
testCompile("org.springframework.xd:spring-xd-test:${project.springXdVersion}") {
exclude group: 'org.springframework.xd', module: 'spring-xd-hadoop'
}
testRuntime("org.apache.hadoop:hadoop-common:2.6.0") {
exclude group: 'javax.servlet'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2'
}
repositories {
maven { url "http://repo.spring.io/release" }
mavenCentral()
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}