-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
44 lines (42 loc) · 1.15 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
37
38
39
40
41
42
43
44
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "XCERepoConfigurator",
platforms: [
.macOS(.v10_11),
],
products: [
.library(
name: "XCERepoConfigurator",
targets: [
"XCERepoConfigurator"
]
)
],
dependencies: [
.package(url: "https://github.com/kylef/PathKit", from: "1.0.0"),
.package(url: "https://github.com/mxcl/Version.git", from: "1.0.0"),
.package(url: "https://github.com/JohnSundell/ShellOut.git", from: "2.0.0"),
.package(url: "https://github.com/nschum/SwiftHamcrest", from: "2.2.1")
],
targets: [
.target(
name: "XCERepoConfigurator",
dependencies: [
"Version",
"PathKit",
"ShellOut"
],
path: "Sources/Core"
),
.testTarget(
name: "XCERepoConfiguratorAllTests",
dependencies: [
"XCERepoConfigurator",
"Version",
"SwiftHamcrest"
],
path: "Tests/AllTests"
),
]
)