forked from MakeAWishFoundation/SwiftyMocky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
83 lines (81 loc) · 2.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "swiftymocky",
products: [
// XCTest Runtime libraries
.library(name: "SwiftyMocky", targets: ["SwiftyMocky"]),
.library(name: "SwiftyPrototype", targets: ["SwiftyPrototype"]),
// CLI Executable
.executable(name: "swiftymocky", targets: ["SwiftyMockyCLI"]),
],
dependencies: [
.package(url: "https://github.com/JohnSundell/ShellOut", .upToNextMajor(from: "2.3.0")),
.package(url: "https://github.com/tuist/xcodeproj", .upToNextMajor(from: "8.3.1")),
.package(url: "https://github.com/luoxiu/Chalk", .exact("0.2.1")),
.package(url: "https://github.com/kylef/Commander", .upToNextMajor(from: "0.9.1")),
.package(url: "https://github.com/kylef/PathKit", .upToNextMajor(from: "1.0.1")),
.package(url: "https://github.com/jpsim/Yams", .upToNextMajor(from: "5.0.1")),
],
targets: [
// XCTest Runtime libraries
.target(
name: "SwiftyMocky",
path: "./Sources/SwiftyMocky",
exclude: ["Mock.swifttemplate"]
),
.target(
name: "SwiftyPrototype",
path: "./Sources/SwiftyPrototype",
exclude: ["Prototype.swifttemplate"]
),
.target(
name: "Shared",
path: "./Sources/Shared"
),
// Example and tests
.target(
name: "Mocky_Example_macOS",
path: "./SwiftyMocky-Example/Shared",
exclude: ["Swift5.5"] // TODO: remove when macOS 12 released
),
.testTarget(
name: "SwiftyMockyTests",
dependencies: ["Mocky_Example_macOS", "SwiftyMocky"],
path: "./Tests/SwiftyMockyTests",
exclude: ["Shared/Swift5.5"] // TODO: remove when macOS 12 released
),
.testTarget(
name: "RuntimeLibaryTests",
dependencies: ["SwiftyMocky"]
),
// CLI Executable
.target(
name: "SwiftyMockyCLI",
dependencies: [
"Commander",
"SwiftyMockyCLICore",
],
path: "./Sources/CLI/App"
),
.target(
name: "SwiftyMockyCLICore",
dependencies: [
"ShellOut",
"Chalk",
"XcodeProj",
"PathKit",
"Yams",
],
path: "./Sources/CLI/Core"
),
.testTarget(
name: "SwiftyMockyCLICoreTests",
dependencies: [
"SwiftyMockyCLICore",
"SwiftyMocky",
]
),
]
)