forked from openbakery/gradle-xcodePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (54 loc) · 1.43 KB
/
build.gradle
File metadata and controls
69 lines (54 loc) · 1.43 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
allprojects {
apply plugin: 'java-gradle-plugin'
apply plugin: 'groovy'
def versionNumber = "0.15.2"
if (project.hasProperty("versionNumber")) {
versionNumber = project.versionNumber
}
if (project.hasProperty("versionSuffix")) {
versionNumber += project.versionSuffix
}
if (project.hasProperty("buildNumber")) {
versionNumber += "." + project.buildNumber
}
group = 'org.openbakery'
version = versionNumber
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
repositories {
mavenCentral()
}
dependencies {
compile localGroovy()
compile 'commons-io:commons-io:2.2'
compile 'commons-configuration:commons-configuration:1.10'
compile 'commons-collections:commons-collections:3.2.2'
compile 'commons-codec:commons-codec:1.10'
compile 'ch.qos.logback:logback-core:1.0.13'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.codehaus.groovy:groovy-all:2.4.7'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'org.objenesis:objenesis:1.2'
testCompile 'cglib:cglib-nodep:2.2.2'
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
}
}
project(':plugin') {
dependencies {
compileOnly project(':libxcode')
testCompile project(':libtest')
}
}
project(':libxcode') {
dependencies {
testCompile project(':libtest')
}
}
project(':libtest') {
dependencies {
compile project(':libxcode')
}
}