forked from LiveUI/S3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
48 lines (47 loc) · 1.26 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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "S3",
products: [
.library(name: "S3", targets: ["S3"]),
.library(name: "S3Signer", targets: ["S3Signer"]),
.library(name: "S3TestTools", targets: ["S3TestTools"])
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/LiveUI/XMLCoding.git", from: "0.1.0"),
.package(url: "https://github.com/LiveUI/VaporTestTools.git", from: "0.1.5")
],
targets: [
.target(name: "S3", dependencies: [
"Vapor",
"S3Signer",
"XMLCoding"
]
),
.target(name: "S3DemoRun", dependencies: [
"S3DemoApp"
]
),
.target(name: "S3DemoApp", dependencies: [
"Vapor",
"S3",
"S3Signer"
]
),
.target(name: "S3Signer", dependencies: [
"Vapor"
]
),
.target(name: "S3TestTools", dependencies: [
"Vapor",
"VaporTestTools",
"S3"
]
),
.testTarget(name: "S3Tests", dependencies: [
"S3"
]
)
]
)