forked from devxoul/URLNavigator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
22 lines (20 loc) · 849 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
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "URLNavigator",
products: [
.library(name: "URLMatcher", targets: ["URLMatcher"]),
.library(name: "URLNavigator", targets: ["URLNavigator"]),
],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "1.2.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "7.0.2")),
.package(url: "https://github.com/devxoul/Stubber.git", .upToNextMajor(from: "1.0.0")),
],
targets: [
.target(name: "URLMatcher"),
.target(name: "URLNavigator", dependencies: ["URLMatcher"]),
.testTarget(name: "URLMatcherTests", dependencies: ["URLMatcher", "Quick", "Nimble"]),
.testTarget(name: "URLNavigatorTests", dependencies: ["URLNavigator", "Quick", "Nimble", "Stubber"]),
]
)