-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.yml
82 lines (81 loc) · 1.91 KB
/
project.yml
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
70
71
72
73
74
75
76
77
78
79
80
81
name: Swiftmazing
packages:
NetworkLayer:
path: NetworkLayer
UIComponents:
path: UIComponents
options:
indentWidth: 2
tabWidth: 2
groupSortPosition: top
xcodeVersion: 0800
groupOrdering:
- order: [Swiftmazing, SwiftmazingTests]
config:
debug: debug
release: release
settings:
base:
IPHONEOS_DEPLOYMENT_TARGET: 15
targets:
Swiftmazing:
type: application
platform: iOS
sources:
- path: Swiftmazing/
excludes:
- "**/ServiceProviderMock.swift"
settings:
base:
TARGETED_DEVICE_FAMILY: 1
DISPLAYNAME: Swiftmazing
HOST: api.github.com
SCHEME: https
INFOPLIST_FILE: Swiftmazing/Resources/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.swiftmazing
dependencies:
- package: NetworkLayer
product: NetworkLayer
link: true
- package: UIComponents
product: UIComponents
link: true
scheme:
gatherCoverageData: true
coverageTargets:
- Swiftmazing
testTargets:
- SwiftmazingTests
SwiftmazingTests:
type: bundle.unit-test
platform: iOS
sources:
- path: SwiftmazingTests
settings:
base:
INFOPLIST_FILE: SwiftmazingTests/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.swiftmazingtests
dependencies:
- target: Swiftmazing
SwiftmazingMock:
type: application
platform: iOS
sources:
- path: Swiftmazing/
excludes:
- "**/ServiceProvider.swift"
settings:
base:
TARGETED_DEVICE_FAMILY: 1
DISPLAYNAME: Swiftmazing
HOST: api.github.com
SCHEME: https
INFOPLIST_FILE: Swiftmazing/Resources/Info.plist
PRODUCT_BUNDLE_IDENTIFIER: com.swiftmazing
dependencies:
- package: NetworkLayer
product: NetworkLayer
link: true
- package: UIComponents
product: UIComponents
link: true