-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
36 lines (35 loc) · 1.28 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
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "TealiumAirship",
platforms: [
.iOS(.v12)
],
products: [
.library(name: "TealiumAirship", targets: ["TealiumAirship"]),
],
dependencies: [
.package(name: "TealiumSwift", url: "https://github.com/tealium/tealium-swift", .upToNextMajor(from: "2.12.0")),
.package(name: "Airship", url: "https://github.com/urbanairship/ios-library", .upToNextMajor(from: "16.0.1"))
],
targets: [
.target(
name: "TealiumAirship",
dependencies: [
.product(name: "AirshipCore", package: "Airship"),
.product(name: "AirshipAutomation", package: "Airship"),
.product(name: "AirshipMessageCenter", package: "Airship"),
.product(name: "AirshipLocation", package: "Airship"),
.product(name: "TealiumCore", package: "TealiumSwift"),
.product(name: "TealiumRemoteCommands", package: "TealiumSwift")
],
path: "./Sources",
exclude: ["Support"]
),
.testTarget(
name: "TealiumAirshipTests",
dependencies: ["TealiumAirship"],
path: "./Tests",
exclude: ["Support"])
]
)