forked from sergdort/CleanArchitectureRxSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
88 lines (88 loc) · 2.08 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
82
83
84
85
86
87
88
name: CleanArchitectureRxSwift
settings:
base:
SWIFT_VERSION: "5.0"
options:
bundleIdPrefix: com.clean
targets:
Domain:
type: framework
platform: iOS
deploymentTarget: "11.0"
sources: [Domain]
dependencies:
- carthage: RxSwift
DomainTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "11.0"
sources:
- path: DomainTests
dependencies:
- carthage: RxTest
- carthage: RxBlocking
- target: Domain
NetworkPlatform:
type: framework
platform: iOS
deploymentTarget: "11.0"
sources: [NetworkPlatform]
dependencies:
- target: Domain
- carthage: RxSwift
- carthage: RxAlamofire
- carthage: Alamofire
- carthage: RxAtomic
NetworkPlatformTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "11.0"
sources:
- path: NetworkPlatformTests
dependencies:
- carthage: RxTest
- carthage: RxBlocking
- carthage: RxCocoa
- target: NetworkPlatform
RealmPlatform:
type: framework
platform: iOS
deploymentTarget: "11.0"
sources: [RealmPlatform]
dependencies:
- target: Domain
- carthage: RxSwift
- carthage: Realm
- carthage: RealmSwift
- carthage: RxRealm
RealmPlatformTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "11.0"
sources:
- path: RealmPlatformTests
dependencies:
- carthage: RxTest
- carthage: RxBlocking
- target: RealmPlatform
CleanArchitectureRxSwift:
type: application
platform: iOS
deploymentTarget: "11.0"
sources: [CleanArchitectureRxSwift]
dependencies:
- target: Domain
- target: NetworkPlatform
- target: RealmPlatform
- carthage: RxSwift
- carthage: RxCocoa
CleanArchitectureRxSwiftTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "11.0"
sources:
- path: CleanArchitectureRxSwiftTests
dependencies:
- carthage: RxTest
- carthage: RxBlocking
- target: CleanArchitectureRxSwift