-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
39 lines (32 loc) · 1.08 KB
/
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
apply plugin: 'java'
apply plugin: 'eclipse'
configurations {
pluginjar
}
project.ext {
pluginId = "sftp"
pluginName = "SFTP"
pluginVersion = "0.4.6-alpha"
pluginDebianVersion = "1"
pluginDate = new Date()
pluginAppMinVersion = "0.4.2-alpha"
pluginRelease = rootProject.ext.applicationRelease
pluginConflictsWith = ""
pluginVersionSnapshot = rootProject.ext.applicationVersionSnapshot
pluginVersionFull = "${pluginVersion}${pluginVersionSnapshot}"
pluginNeedsOperatingSystemAndArchitecture = false
}
dependencies {
compile project(':syncany-lib')
compile "com.jcraft:jsch:0.1.55"
compile "org.apache.sshd:sshd-core:0.14.0"
compile "org.apache.commons:commons-vfs2:2.0"
pluginjar "com.jcraft:jsch:0.1.55"
pluginjar "org.apache.sshd:sshd-core:0.9.0"
pluginjar "org.apache.commons:commons-vfs2:2.0"
testCompile "junit:junit:4.3"
testCompile project(path: ':syncany-lib', configuration: 'tests')
testCompile project(path: ':syncany-util', configuration: 'tests')
}
apply from: 'core/gradle/gradle/plugins.jar.gradle'
apply from: 'core/gradle/gradle/plugins.debian.gradle'