-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPodfile
80 lines (66 loc) · 2.28 KB
/
Podfile
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
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
$dev_repo = 'https://github.com/adobe/aepsdk-core-ios.git'
$dev_branch = 'staging'
# don't warn me
install! 'cocoapods', :warn_for_unused_master_specs_repo => false
workspace 'AEPPlaces'
project 'AEPPlaces.xcodeproj'
pod 'SwiftLint', '0.52.0'
# ==================
# SHARED POD GROUPS
# ==================
# development against main branches of dependencies
def dev_main
pod 'AEPCore'
pod 'AEPServices'
pod 'AEPRulesEngine'
end
# development against dev branches of dependencies
def dev_dev
pod 'AEPCore', :git => $dev_repo, :branch => $dev_branch
pod 'AEPServices', :git => $dev_repo, :branch => $dev_branch
pod 'AEPRulesEngine' #, :git => 'https://github.com/adobe/aepsdk-rulesengine-ios.git', :branch => 'dev-v5.0.0'
end
# test app against main branches
def test_main
dev_main
pod 'AEPAnalytics'
pod 'AEPIdentity'
pod 'AEPLifecycle'
pod 'AEPSignal'
pod 'AEPAssurance', :git => 'https://github.com/adobe/aepsdk-assurance-ios.git', :branch => 'staging'
pod 'AEPEdgeIdentity'
pod 'AEPEdgeConsent'
pod 'AEPEdge'
end
# test app against dev branches
def test_dev
dev_dev
pod 'AEPIdentity', :git => $dev_repo, :branch => $dev_branch
pod 'AEPLifecycle', :git => $dev_repo, :branch => $dev_branch
pod 'AEPSignal', :git => $dev_repo, :branch => $dev_branch
pod 'AEPAnalytics'
pod 'AEPAssurance', :git => 'https://github.com/adobe/aepsdk-assurance-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPEdge', :git => 'https://github.com/adobe/aepsdk-edge-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPEdgeConsent', :git => 'https://github.com/adobe/aepsdk-edgeconsent-ios.git', :branch => 'dev-v5.0.0'
pod 'AEPEdgeIdentity', :git => 'https://github.com/adobe/aepsdk-edgeidentity-ios.git', :branch => 'dev-v5.0.0'
end
# ==================
# TARGET DEFINITIONS
# ==================
target 'AEPPlaces' do
dev_main
end
target 'AEPPlacesTests' do
dev_main
pod 'AEPTestUtils', :git => 'https://github.com/adobe/aepsdk-testutils-ios.git', :tag => '5.0.0'
end
target 'PlacesTestApp' do
test_main
end
target 'PlacesTestApp_objc' do
test_main
end