Skip to content

Commit

Permalink
rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
rafiki270 committed Mar 22, 2018
1 parent 7b133ff commit efb7e86
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ import PackageDescription
let package = Package(
name: "VaporTestTools",
products: [
.library(name: "VaporTestTools", targets: ["VaporTestTools"]),
],
.library(
name: "VaporTestTools",
targets: ["VaporTestTools"]
),
],
dependencies: [
.package(url: "https://github.com/vapor/vapor.git", .branch("nio")),
],
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0-rc.2")
],
targets: [
.target(
name: "VaporTestTools",
Expand All @@ -22,9 +25,12 @@ let package = Package(
"Vapor"
]
),
.target(name: "RunVaporTestTools", dependencies: [
"AppVaporTestTools"
]),
.target(
name: "RunVaporTestTools",
dependencies: [
"AppVaporTestTools"
]
),
.testTarget(name: "VaporTestToolsTests", dependencies: ["AppVaporTestTools", "VaporTestTools"])
]
)
Expand Down

0 comments on commit efb7e86

Please sign in to comment.