-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Description
| Previous ID | SR-6337 |
| Radar | None |
| Original Reporter | ianpartridge (JIRA User) |
| Type | Bug |
| Status | Resolved |
| Resolution | Duplicate |
Environment
Swift 4
Additional Detail from JIRA
| Votes | 2 |
| Component/s | Package Manager |
| Labels | Bug |
| Assignee | None |
| Priority | Medium |
md5: 3ae013a94fb8b73a07cbfdd44f2f4534
duplicates:
- SR-3981 Using private repository for editable package
Issue Description:
Package.swift:
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "MyApp",
dependencies: [
.package(url: "https://github.com/IBM-Swift/Kitura.git", from: "2.0.0"),
.package(url: "https://github.com/IBM-Swift/Kitura-CredentialsHTTP.git", from: "1.8.0")
],
targets: [
.target(
name: "MyApp",
dependencies: ["Kitura", "CredentialsHTTP"]),
]
)Log:
$ swift build
Fetching https://github.com/IBM-Swift/Kitura.git
Fetching https://github.com/IBM-Swift/Kitura-CredentialsHTTP.git
Fetching https://github.com/IBM-Swift/Kitura-net.git
Fetching https://github.com/IBM-Swift/Kitura-TemplateEngine.git
Fetching https://github.com/IBM-Swift/KituraContracts.git
Fetching https://github.com/IBM-Swift/LoggerAPI.git
Fetching https://github.com/IBM-Swift/BlueSocket.git
Fetching https://github.com/IBM-Swift/CCurl.git
Fetching https://github.com/IBM-Swift/BlueSSLService.git
Fetching https://github.com/IBM-Swift/Kitura-Credentials.git
Fetching https://github.com/IBM-Swift/Kitura-Session.gitAdding --verbose shows much gitness occurring...