-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPackage.swift
81 lines (80 loc) · 2.63 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
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "EinstoreCore",
products: [
.library(name: "EinstoreCore", targets: ["EinstoreCore"]),
.library(name: "EinstoreCoreTestTools", targets: ["EinstoreCoreTestTools"]),
.executable(name: "EinstoreRun", targets: ["EinstoreRun"])
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/fluent.git", from: "3.0.0"),
.package(url: "https://github.com/vapor/fluent-postgresql.git", from: "1.0.0"),
.package(url: "https://github.com/kareman/SwiftShell.git", from: "4.0.2"),
.package(url: "https://github.com/LiveUI/S3.git", from: "3.0.0"),
.package(url: "https://github.com/LiveUI/ErrorsCore.git", from: "0.1.0"),
.package(url: "https://github.com/LiveUI/ApiCore.git", from: "1.0.2"),
.package(url: "https://github.com/LiveUI/MailCore.git", from: "3.1.2"),
.package(url: "https://github.com/LiveUI/VaporTestTools.git", from: "0.1.5"),
.package(url: "https://github.com/LiveUI/FluentTestTools.git", from: "0.1.0"),
.package(url: "https://github.com/apple/swift-nio-zlib-support.git", from: "1.0.0")
],
targets: [
.target(name: "Czlib"),
.target(
name: "Normalized",
dependencies: [
"Czlib"
]
),
.target(
name: "EinstoreApp",
dependencies: [
"Vapor",
"EinstoreCore"
]
),
.target(
name: "EinstoreRun",
dependencies: [
"EinstoreApp"
]
),
.target(
name: "EinstoreCore",
dependencies: [
"Vapor",
"Fluent",
"FluentPostgreSQL",
"ApiCore",
"ErrorsCore",
"SwiftShell",
"MailCore",
"S3",
"Normalized"
]
),
.target(
name: "EinstoreCoreTestTools",
dependencies: [
"Vapor",
"ApiCore",
"EinstoreCore",
"VaporTestTools",
"ApiCoreTestTools",
"MailCoreTestTools"
]
),
.testTarget(
name: "EinstoreCoreTests",
dependencies: [
"EinstoreCore",
"VaporTestTools",
"FluentTestTools",
"ApiCoreTestTools",
"EinstoreCoreTestTools"
]
)
]
)