-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (26 loc) · 732 Bytes
/
build.gradle
File metadata and controls
35 lines (26 loc) · 732 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
32
33
34
35
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
group 'jftp'
version '0.4-beta'
repositories { mavenCentral() }
dependencies {
compile 'com.jcraft:jsch:0.1.50'
compile 'joda-time:joda-time:2.3'
compile 'commons-net:commons-net:3.3'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'junit:junit:4.11'
}
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}
task jarWithDependencies(type: Jar, dependsOn: 'build') {
from files(sourceSets.main.output.classesDir)
from files(sourceSets.main.output.resourcesDir)
from {
configurations.compile.collect {
zipTree(it)
}
}
}