-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,8 @@ import PackageDescription | |
|
||
// Dual pathing for O/S differences | ||
#if os(Linux) | ||
//let swiftyJsonUrl = "https://github.com/IBM-Swift/SwiftyJSON.git" | ||
let swiftyJsonUrl = "[email protected]:IBM-Swift/SwiftyJSON.git" | ||
let swiftyJsonUrl = "https://github.com/IBM-Swift/SwiftyJSON.git" | ||
//let swiftyJsonUrl = "[email protected]:IBM-Swift/SwiftyJSON.git" | ||
let swiftyJsonVersion = 3 | ||
#else | ||
let swiftyJsonUrl = "https://github.com/SwiftyJSON/SwiftyJSON.git" | ||
|
@@ -41,18 +41,28 @@ let package = Package( | |
// as dependencies. For now, due to what seems to be a defect in SPM, | ||
// we are specifying these other dependencies. | ||
dependencies: [ | ||
.Package(url: "[email protected]:IBM-Swift/LoggerAPI.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/HeliumLogger.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/BlueSocket.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-sys.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-net.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-router.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-Pcre2.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-CurlHelpers.git", majorVersion: 0), | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-HttpParserHelper.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/LoggerAPI.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/LoggerAPI.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/HeliumLogger.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/HeliumLogger.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/BlueSocket.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/BlueSocket.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-sys.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-sys.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-net.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-net.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-router.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-router.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-Pcre2.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-Pcre2.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-CurlHelpers.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-CurlHelpers.git", majorVersion: 0), | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-HttpParserHelper.git", majorVersion: 0), | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-HttpParserHelper.git", majorVersion: 0), | ||
.Package(url: swiftyJsonUrl, majorVersion: swiftyJsonVersion) | ||
], | ||
testDependencies: [ | ||
.Package(url: "[email protected]:IBM-Swift/Kitura-TestFramework.git", majorVersion: 0) | ||
//.Package(url: "[email protected]:IBM-Swift/Kitura-TestFramework.git", majorVersion: 0) | ||
.Package(url: "https://github.com/IBM-Swift/Kitura-TestFramework.git", majorVersion: 0) | ||
] | ||
) |