-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
26 lines (24 loc) · 1.01 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
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "RedmineBot",
dependencies: [
.package(url: "https://github.com/IBM-Swift/SwiftyRequest.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/onevcat/Rainbow", from: "3.0.0"),
.package(url: "https://github.com/kylef/Commander", from: "0.8.0"),
.package(url: "https://github.com/kylef/Stencil", .branch("master")),
.package(url: "https://github.com/IBM-Swift/swift-html-entities", .upToNextMajor(from: "3.0.0"))
],
targets: [
.target(
name: "RedmineBot",
dependencies: ["RedmineBotCore"]),
.target(
name: "RedmineBotCore",
dependencies: ["SwiftyRequest", "Rainbow", "Commander", "Stencil", "HTMLEntities"]),
.testTarget(
name: "RedmineBotTest",
dependencies: ["RedmineBotCore"])
]
)