forked from aws-amplify/amplify-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
100 lines (91 loc) · 3.82 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
// 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: "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.23.3")),
.package(name: "AppSyncRealTimeClient", url: "https://github.com/aws-amplify/aws-appsync-realtime-client-ios.git", from: "1.4.3"),
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.0")
],
targets: [
.target(
name: "Amplify",
path: "Amplify"
),
.target(
name: "AWSPluginsCore",
dependencies: [.target(name: "Amplify"),
.product(name: "AWSCore", package: "AWSiOSSDKV2")],
path: "AmplifyPlugins/Core/AWSPluginsCore"
),
.target(
name: "AWSAPIPlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AppSyncRealTimeClient", package: "AppSyncRealTimeClient")
],
path: "AmplifyPlugins/API/AWSAPICategoryPlugin"
),
.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"
),
.target(
name: "AWSDataStorePlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "SQLite", package: "SQLite.swift")],
path: "AmplifyPlugins/DataStore/AWSDataStoreCategoryPlugin"
),
.target(
name: "AWSPinpointAnalyticsPlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSPinpoint", package: "AWSiOSSDKV2")
],
path: "AmplifyPlugins/Analytics/AWSPinpointAnalyticsPlugin"
),
.target(
name: "AWSS3StoragePlugin",
dependencies: [
.target(name: "Amplify"),
.target(name: "AWSPluginsCore"),
.product(name: "AWSCore", package: "AWSiOSSDKV2"),
.product(name: "AWSS3", package: "AWSiOSSDKV2")
],
path: "AmplifyPlugins/Storage/AWSS3StoragePlugin"
)
]
)