-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathPackage.swift
28 lines (25 loc) · 808 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
// swift-tools-version:4.1
/**
* TestDrive
* Copyright (c) John Sundell 2017
* Licensed under the MIT license. See LICENSE file.
*/
import Foundation
import PackageDescription
let package = Package(
name: "TestDrive",
dependencies: [
.package(url: "https://github.com/JohnSundell/Xgen.git", from: "2.0.0"),
.package(url: "https://github.com/JohnSundell/Files.git", from: "2.0.0"),
.package(url: "https://github.com/JohnSundell/ShellOut.git", from: "2.0.0"),
.package(url: "https://github.com/JohnSundell/Releases.git", from: "2.0.0")
],
targets: [
.target(
name: "TestDrive",
dependencies: ["Xgen", "Files", "ShellOut", "Releases"],
path: "Sources",
exclude: ["Marathonfile"]
)
]
)