-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
39 lines (31 loc) · 1021 Bytes
/
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 = "s3"
pluginName = "Amazon S3"
pluginVersion = "0.4.7-alpha"
pluginDebianVersion = "1"
pluginDate = new Date()
pluginAppMinVersion = "0.4.6-alpha"
pluginRelease = rootProject.ext.applicationRelease
pluginConflictsWith = ""
pluginVersionSnapshot = rootProject.ext.applicationVersionSnapshot
pluginVersionFull = "${pluginVersion}${pluginVersionSnapshot}"
pluginNeedsOperatingSystemAndArchitecture = false
}
dependencies {
compile project(':syncany-lib')
compile "net.java.dev.jets3t:jets3t:0.9.2"
pluginjar("net.java.dev.jets3t:jets3t:0.9.2") {
exclude group: "org.bouncycastle"
exclude group: "org.apache.httpcomponents"
}
pluginjar "log4j:log4j:1.2.17" // For jets3t, see #162
testCompile "junit:junit:4.12"
testCompile project(path: ':syncany-lib', configuration: 'tests')
}
apply from: 'core/gradle/gradle/plugins.jar.gradle'
apply from: 'core/gradle/gradle/plugins.debian.gradle'