-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (48 loc) · 1.53 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
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'maven'
jar {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.apache.zookeeper:zookeeper:3.4.7'
//compile 'org.apache.curator:apache-curator:3.0.0'
compile 'log4j:log4j:1.2.17'
testCompile 'junit:junit:4.12'
}
install {
repositories.mavenInstaller {
pom {
project {
packaging 'jar'
name 'empty talk groups'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'schordingercat'
name 'zhige.tang'
email '[email protected]'
}
}
scm {
connection 'http://schordingercat.github.com'
developerConnection 'http://schordingercat.github.com'
url 'http://schordingercat.github.com'
}
}
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}