-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
38 lines (30 loc) · 1.02 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 = "dropbox"
pluginName = "Dropbox"
pluginVersion = "0.4.6-alpha"
pluginDebianVersion = "1"
pluginDate = new Date()
pluginAppMinVersion = "0.4.5-alpha"
pluginRelease = rootProject.ext.applicationRelease
pluginConflictsWith = ""
pluginVersionSnapshot = rootProject.ext.applicationVersionSnapshot
pluginVersionFull = "${pluginVersion}${pluginVersionSnapshot}"
pluginNeedsOperatingSystemAndArchitecture = false
}
dependencies {
compile project(":syncany-lib")
compile project(":syncany-util")
compile "com.dropbox.core:dropbox-core-sdk:1.7.7"
pluginjar "com.dropbox.core:dropbox-core-sdk:1.7.7"
testCompile project(path: ":syncany-lib", configuration: "tests")
testCompile project(path: ":syncany-util", configuration: "tests")
testCompile "junit:junit:4.9"
testCompile "org.apache.ftpserver:ftpserver-core:1.0.6"
}
apply from: 'core/gradle/gradle/plugins.jar.gradle'
apply from: 'core/gradle/gradle/plugins.debian.gradle'