-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
41 lines (40 loc) · 1.36 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
// swift-tools-version:5.3
// Do not remove or alter the notices in this preamble.
// Created for Worldline Global Collect on 16/09/2024.
// Copyright © 2024 Worldline Global Collect. All rights reserved.
//
import Foundation
import PackageDescription
let package = Package(
name: "WorldlineConnectKit",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "WorldlineConnectKit",
targets: ["WorldlineConnectKit"])
],
dependencies: [
.package(url: "https://github.com/Alamofire/Alamofire", from: "5.9.1"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift", from: "1.8.3"),
.package(url: "https://github.com/AliSoftware/OHHTTPStubs", from: "9.1.0")
],
targets: [
.target(
name: "WorldlineConnectKit",
dependencies: ["Alamofire", "CryptoSwift"],
path: "WorldlineConnectKit",
resources: [.copy("WorldlineConnectKit.bundle"), .copy("PrivacyInfo.xcprivacy")]
),
.testTarget(
name: "WorldlineConnectKitTests",
dependencies: [
"WorldlineConnectKit",
.product(name: "OHHTTPStubsSwift", package: "OHHTTPStubs"),
.product(name: "OHHTTPStubs", package: "OHHTTPStubs")
],
path: "WorldlineConnectKitTests"
)
]
)