-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (29 loc) · 898 Bytes
/
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
// swift-tools-version:5.3
// https://github.com/apple/swift-package-manager/blob/master/Documentation/PackageDescription.md
import PackageDescription
let package = Package(
name: "PinKit",
defaultLocalization: "en",
products: [
.library(
name: "PinKit",
targets: ["PinKit"]),
],
dependencies: [
// .package(path: "../Quick"),
.package(url: "[email protected]:Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
.package(url: "[email protected]:Quick/Nimble.git", .upToNextMajor(from: "8.1.1")),
],
targets: [
.target(
name: "PinKit",
dependencies: []),
.testTarget(
name: "PinKitTests",
dependencies: ["PinKit", "Quick", "Nimble"],
resources: [
.copy("Resources/JSON")
]),
],
swiftLanguageVersions: [.v5]
)