-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
51 lines (39 loc) · 2.96 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
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "Server",
dependencies: [
//.package(url: "https://github.com/crspybits/SwiftyAWSSNS.git", .branch("master")),
.package(url: "https://github.com/crspybits/SwiftyAWSSNS.git", .upToNextMajor(from: "0.3.0")),
// 7/2/17; See comment in SwiftMain with the same date.
// .Package(url: "https://github.com/RuntimeTools/SwiftMetrics.git", majorVersion: 1, minor: 2),
// .package(url: "../../repos/SyncServer-Shared", .branch("dev")),
// .package(url: "https://github.com/crspybits/SyncServer-Shared.git", .branch("dev")),
.package(url: "https://github.com/crspybits/SyncServer-Shared.git", .upToNextMajor(from: "11.1.0")),
// .package(url: "../../repos/Perfect-MySQL", .branch("master")),
// .package(url:"https://github.com/crspybits/Perfect-MySQL.git", from: "3.1.3"),
.package(url:"https://github.com/PerfectlySoft/Perfect-MySQL.git", .upToNextMajor(from: "3.4.1")),
.package(url: "https://github.com/PerfectlySoft/Perfect.git", .upToNextMajor(from: "3.1.4")),
.package(url: "https://github.com/PerfectlySoft/Perfect-Thread.git", .upToNextMajor(from: "3.0.6")),
.package(url: "https://github.com/IBM-Swift/Kitura.git", .upToNextMajor(from: "2.7.0")),
.package(url: "https://github.com/IBM-Swift/Swift-JWT.git", from: "3.5.3"),
.package(url: "https://github.com/IBM-Swift/Kitura-Credentials.git", .upToNextMajor(from: "2.4.1")),
.package(url: "https://github.com/IBM-Swift/Kitura-CredentialsFacebook.git", .upToNextMajor(from: "2.3.1")),
.package(url: "https://github.com/IBM-Swift/Kitura-CredentialsGoogle.git", .upToNextMajor(from: "2.3.1")),
// .package(url: "../../repos/CredentialsDropbox", .branch("master")),
.package(url: "https://github.com/crspybits/CredentialsDropbox.git", .upToNextMajor(from: "0.4.0")),
// .package(url: "https://github.com/crspybits/CredentialsMicrosoft.git", .branch("master")),
.package(url: "https://github.com/crspybits/CredentialsMicrosoft.git", from: "0.1.0"),
.package(url: "https://github.com/crspybits/CredentialsAppleSignIn.git", .branch("master")),
// .package(url: "https://github.com/crspybits/CredentialsAppleSignIn.git", from: "0.1.0"),
.package(url: "https://github.com/IBM-Swift/HeliumLogger.git", .upToNextMajor(from: "1.8.1"))
],
targets: [
.target(name: "Main",
dependencies: ["Server"]),
.target(name: "Server",
dependencies: ["SyncServerShared", "Credentials", "CredentialsGoogle", "PerfectThread", "PerfectMySQL", "HeliumLogger", "CredentialsFacebook", "CredentialsDropbox", "Kitura", "PerfectLib", "SwiftyAWSSNS", "CredentialsMicrosoft", "CredentialsAppleSignIn", "SwiftJWT"]),
.testTarget(name: "ServerTests",
dependencies: ["Server", "Main", "CredentialsDropbox"])
]
)