forked from JohnSundell/Marathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
23 lines (21 loc) · 847 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
/**
* Marathon
* Copyright (c) John Sundell 2017
* Licensed under the MIT license. See LICENSE file.
*/
import PackageDescription
let package = Package(
name: "Marathon",
targets: [
Target(name: "Marathon", dependencies: ["MarathonCore"]),
Target(name: "MarathonCore")
],
dependencies: [
.Package(url: "https://github.com/JohnSundell/Files.git", majorVersion: 1),
.Package(url: "https://github.com/JohnSundell/Unbox.git", majorVersion: 2),
.Package(url: "https://github.com/JohnSundell/Wrap.git", majorVersion: 2),
.Package(url: "https://github.com/JohnSundell/ShellOut.git", majorVersion: 1),
.Package(url: "https://github.com/JohnSundell/Require.git", majorVersion: 1),
.Package(url: "https://github.com/JohnSundell/Releases.git", majorVersion: 1)
]
)