-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (30 loc) · 955 Bytes
/
build.gradle
File metadata and controls
35 lines (30 loc) · 955 Bytes
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
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3.1'
}
}
group 'smartthings'
version = file('version.txt').text.trim()
apply plugin: 'groovy'
apply from: file('gradle/convention.gradle')
apply from: file('gradle/publish.gradle')
repositories {
mavenLocal()
jcenter()
}
dependencies {
compile 'org.apache.kafka:kafka_2.10:0.8.2.1'
compile "org.slf4j:slf4j-api:${slf4jVersion}"
compile 'com.google.code.findbugs:jsr305:3.0.0'
testCompile "org.codehaus.groovy:groovy-all:${groovyVersion}"
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testRuntime 'cglib:cglib-nodep:2.2.2'
testRuntime 'org.objenesis:objenesis:1.2'
testRuntime 'ch.qos.logback:logback-classic:1.1.2'
testRuntime "org.slf4j:log4j-over-slf4j:${slf4jVersion}"
testRuntime "org.slf4j:jcl-over-slf4j:${slf4jVersion}"
}