-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (28 loc) · 725 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (28 loc) · 725 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
plugins {
id 'groovy'
}
repositories {
maven {
url 'http://127.0.0.1:8081/repository/maven-all-uci/'
}
}
dependencies {
testCompile 'org.codehaus.groovy:groovy-all:2.4.8'
testCompile "org.spockframework:spock-core:1.1-groovy-2.4-rc-2"
compile 'org.codehaus.groovy:groovy-all:2.4.8'
compile 'javax.mail:mail:1.4.1'
compile 'org.apache.httpcomponents:httpclient:4.5.5'
compile 'org.apache.httpcomponents:httpmime:4.3.1'
compile 'commons-validator:commons-validator:1.4.0'
}
task fatjar(type: Jar) {
manifest {
attributes 'Main-Class': 'org.iroko.transfer.Main'
}
from {
configurations
.runtime
.collect { it.isDirectory() ? it : zipTree(it) }
}
with jar
}