forked from tlaukkan/zigbee4java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (35 loc) · 1.21 KB
/
build.gradle
File metadata and controls
44 lines (35 loc) · 1.21 KB
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
buildscript
{
repositories
{
jcenter()
}
}
apply from: '../build-common-javase.gradle'
apply from: '../build-common.gradle'
description = ''
/**
* The method used here to provide a separate test-jar artifact was learned from:
* https://softnoise.wordpress.com/2014/09/07/gradle-sub-project-test-dependencies-in-multi-project-builds/
*/
configurations
{
testOutput.extendsFrom (testCompile)
}
task jarTest (type: Jar, dependsOn: testClasses) {
from sourceSets.test.output
classifier = 'test'
}
artifacts
{
testOutput jarTest
}
dependencies {
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.49'
compile group: 'org.bouncycastle', name: 'bcmail-jdk15on', version: '1.49'
compile group: 'commons-io', name: 'commons-io', version: '2.4'
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
compile group: 'commons-codec', name: 'commons-codec', version: '1.8'
compile group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.2'
testCompile group: 'org.easymock', name: 'easymock', version: '3.2'
}