forked from codeborne/mobileid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (42 loc) · 946 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
40
41
42
43
44
45
46
47
48
49
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.5
version = '0.9.1'
repositories{
mavenCentral()
}
configure(install.repositories.mavenInstaller) {
pom.groupId = 'com.codeborne'
pom.artifactId = 'mobileid'
pom.version = '0.9'
}
sourceSets {
main {
java {
srcDir 'src'
}
}
test {
java {
srcDir 'test'
}
}
}
dependencies {
compile 'org.apache.axis:axis:1.4'
compile 'org.apache.axis:axis-jaxrpc:1.4'
compile 'commons-discovery:commons-discovery:0.4'
compile 'wsdl4j:wsdl4j:1.6.2'
testCompile 'junit:junit:4.10'
testCompile 'org.hamcrest:hamcrest-all:1.1'
testCompile 'org.mockito:mockito-all:1.9.0-rc1'
}
task 'copy-libs'(type: Sync) {
from configurations.compile
into "$buildDir/libs"
}
task 'copy-test-libs'(type: Sync) {
from configurations.testCompile
into "$buildDir/libs-test"
}
defaultTasks 'clean', 'copy-libs', 'copy-test-libs', 'test', 'install'