-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 891 Bytes
/
Copy pathbuild.gradle
File metadata and controls
33 lines (27 loc) · 891 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
apply plugin: 'java'
apply plugin: 'eclipse'
configurations {
pluginjar
}
project.ext {
pluginId = "raid0"
pluginName = "RAID0"
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 project(":syncany-util")
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'