-
Notifications
You must be signed in to change notification settings - Fork 37
/
Package.swift
44 lines (41 loc) · 1.9 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "PlayKit",
platforms: [.iOS(.v14),
.tvOS(.v14)],
products: [.library(name: "PlayKit",
targets: ["PlayKit"]),
.library(name: "AnalyticsCommon",
targets: ["AnalyticsCommon"])],
dependencies: [
.package(url: "https://github.com/imberezin/kSwiftyJSON.git", .upToNextMajor(from: "5.0.8")),
.package(url: "https://github.com/DaveWoodCom/XCGLogger.git", .upToNextMajor(from: "7.1.5")),
.package(name: "PlayKitUtils",
url: "https://github.com/kaltura/playkit-ios-utils.git",
.upToNextMinor(from: "0.7.0")),
.package(name: "KalturaNetKit",
url: "https://github.com/kaltura/netkit-ios.git",
.upToNextMinor(from: "1.7.0")),
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "7.5.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "13.3.0")),
],
targets: [.target(name: "PlayKit",
dependencies:
[
"kSwiftyJSON",
"XCGLogger",
.product(name: "PlayKitUtils", package: "PlayKitUtils"),
.product(name: "KalturaNetKit", package: "KalturaNetKit"),
],
path: "Classes/"),
.target(name: "AnalyticsCommon",
dependencies: ["PlayKit"],
path: "Plugins/AnalyticsCommon/"),
.testTarget(name: "PlayKitTests",
dependencies: ["PlayKit", "Quick", "Nimble"],
path: "Example/Tests/Basic/",
exclude: [
])
]
)