forked from Cocoanetics/DTCoreText
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
65 lines (45 loc) · 922 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
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
buildscript {
repositories {
maven {
url('http://openbakery.org/repository/')
}
mavenCentral()
}
dependencies {
classpath group: 'org.openbakery', name: 'xcodePlugin', version: '0.9.+'
}
}
apply plugin: 'xcode'
xcodebuild {
scheme = 'Static Library'
target = 'Static Library'
configuration = 'Debug'
}
task continuous(dependsOn: 'test')
gradle.taskGraph.whenReady { taskGraph ->
if (taskGraph.hasTask(test)) {
println "CONFIGURE CONTINUOUS"
xcodebuild {
destination {
platform = 'iOS Simulator'
name = 'iPad'
os='7.1'
}
destination {
platform = 'iOS Simulator'
name = 'iPhone Retina (3.5-inch)'
os='7.1'
}
destination {
platform = 'iOS Simulator'
name = 'iPhone Retina (4-inch)'
os='7.1'
}
destination {
platform = 'iOS Simulator'
name = 'iPad Retina'
os='7.1'
}
}
}
}