-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
139 lines (129 loc) · 4.98 KB
/
Package.swift
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Amplify",
platforms: [.iOS(.v11)],
products: [
.library(
name: "Amplify",
targets: ["Amplify"]),
.library(name: "AWSPluginsCore",
targets: ["AWSPluginsCore"]),
.library(name: "AWSAPIPlugin",
targets: ["AWSAPIPlugin"]),
.library(name: "AWSCognitoAuthPlugin",
targets: ["AWSCognitoAuthPlugin"]),
.library(name: "AWSDataStorePlugin",
targets: ["AWSDataStorePlugin"]),
.library(name: "AWSLocationGeoPlugin",
targets: ["AWSLocationGeoPlugin"]),
.library(name: "AWSPinpointAnalyticsPlugin",
targets: ["AWSPinpointAnalyticsPlugin"]),
.library(name: "AWSS3StoragePlugin",
targets: ["AWSS3StoragePlugin"]),
],
dependencies: [
.package(name: "AWSiOSSDKV2", url: "https://github.com/aws-amplify/aws-sdk-ios-spm.git", .upToNextMinor(from: "2.27.0")),
.package(name: "AppSyncRealTimeClient", url: "https://github.com/aws-amplify/aws-appsync-realtime-client-ios.git", from: "1.8.0"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", .exact("0.12.2"))
],
targets: [
.target(
name: "Amplify",
path: "Amplify",
exclude: [
"Info.plist",
"Categories/DataStore/Model/Temporal/README.md"
]
),
.target(
name: "AWSPluginsCore",
dependencies: [.target(name: "Amplify"),
.product(name: "AWSCore", package: "AWSiOSSDKV2")],
path: "AmplifyPlugins/Core/AWSPluginsCore",
exclude: [
"Info.plist"
]
),
.target(
name: "AWSAPIPlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AppSyncRealTimeClient", package: "AppSyncRealTimeClient")
],
path: "AmplifyPlugins/API/AWSAPICategoryPlugin",
exclude: [
"Info.plist",
"AWSAPIPlugin.md"
]
),
.target(
name: "AWSCognitoAuthPlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSAuthCore", package: "AWSiOSSDKV2"),
.product(name: "AWSMobileClientXCF", package: "AWSiOSSDKV2"),
.product(name: "AWSCognitoIdentityProvider", package: "AWSiOSSDKV2"),
.product(name: "AWSCognitoIdentityProviderASF", package: "AWSiOSSDKV2")],
path: "AmplifyPlugins/Auth/AWSCognitoAuthPlugin",
exclude: [
"Resources/Info.plist"
]
),
.target(
name: "AWSDataStorePlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "SQLite", package: "SQLite.swift")],
path: "AmplifyPlugins/DataStore/AWSDataStoreCategoryPlugin",
exclude: [
"Info.plist"
]
),
.target(
name: "AWSLocationGeoPlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSLocationXCF", package: "AWSiOSSDKV2")
],
path: "AmplifyPlugins/Geo/AWSLocationGeoPlugin",
exclude: [
"Resources/Info.plist"
]
),
.target(
name: "AWSPinpointAnalyticsPlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSPinpoint", package: "AWSiOSSDKV2")
],
path: "AmplifyPlugins/Analytics/AWSPinpointAnalyticsPlugin",
exclude: [
"Resources/Info.plist"
]
),
.target(
name: "AWSS3StoragePlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSS3", package: "AWSiOSSDKV2")
],
path: "AmplifyPlugins/Storage/AWSS3StoragePlugin",
exclude: [
"Resources/Info.plist"
]
)
]
)