forked from mono0926/LicensePlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
26 lines (24 loc) · 806 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
// swift-tools-version:3.1
import PackageDescription
let package = Package(
name: "LicensePlist",
targets: [
Target(
name: "LicensePlist",
dependencies: ["LicensePlistCore"]
),
Target(name: "LicensePlistCore")
],
dependencies: [
.Package(url: "https://github.com/kylef/Commander.git",
majorVersion: 0),
.Package(url: "https://github.com/ikesyo/Himotoki.git",
majorVersion: 3),
.Package(url: "https://github.com/ishkawa/APIKit.git",
majorVersion: 3),
.Package(url: "https://github.com/IBM-Swift/HeliumLogger.git",
majorVersion: 1),
.Package(url: "https://github.com/behrang/YamlSwift.git",
majorVersion: 3)
]
)