-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
38 lines (31 loc) · 1.19 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
apply plugin: 'java'
apply plugin: 'eclipse'
configurations {
pluginjar
}
project.ext {
pluginId = "webdav"
pluginName = "WebDAV"
pluginVersion = "0.4.0-alpha"
pluginDebianVersion = "1"
pluginDate = new Date()
pluginAppMinVersion = "0.4.0-alpha"
pluginRelease = rootProject.ext.applicationRelease
pluginConflictsWith = ""
pluginVersionSnapshot = rootProject.ext.applicationVersionSnapshot
pluginVersionFull = "${pluginVersion}${pluginVersionSnapshot}"
pluginNeedsOperatingSystemAndArchitecture = false
}
dependencies {
compile project(':syncany-lib')
compile "com.github.lookfirst:sardine:5.1"
compile "org.slf4j:slf4j-simple:1.7.6" // Required to silence Sardine logger
pluginjar "com.github.lookfirst:sardine:5.1"
pluginjar "org.slf4j:slf4j-simple:1.7.6" // Required to silence Sardine logger
pluginjar "org.apache.httpcomponents:httpclient:4.3.1" // Required for Sardine
testCompile project(path: ':syncany-lib', configuration: 'tests')
testCompile project(path: ':syncany-util', configuration: 'tests')
testCompile "junit:junit:4.9"
}
apply from: 'core/gradle/gradle/plugins.jar.gradle'
apply from: 'core/gradle/gradle/plugins.debian.gradle'