forked from bludesign/FaxServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package@swift-4.swift
32 lines (31 loc) · 1.13 KB
/
Package@swift-4.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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "Server",
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "2.0.0")),
.package(url: "https://github.com/vapor/leaf-provider.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/vapor/validation.git", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/OpenKitten/MongoKitten.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/bludesign/vapor-apns", .upToNextMajor(from: "2.0.1"))
],
targets: [
.target(name: "Server",
dependencies: [
"Vapor",
"LeafProvider",
"Validation",
"MongoKitten",
"VaporAPNS"
],
exclude: [
"Config",
"Deploy",
"Public",
"Resources",
"Tests",
"Database"
]),
.target(name: "App", dependencies: ["Server"])
]
)