forked from zsmartsystems/com.zsmartsystems.zigbee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
39 lines (30 loc) · 928 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
32
33
34
35
36
37
38
39
allprojects {
apply plugin: 'maven'
group = 'com.zsmartsystems'
version = '1.1.4-SNAPSHOT'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
task packageSources(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts.archives packageSources
repositories {
mavenLocal()
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile group: 'log4j', name: 'log4j', version:'1.2.17'
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.2'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.2'
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version:'2.19.1'
testCompile group: 'org.awaitility', name: 'awaitility', version:'2.0.0'
}
}