Skip to content

Commit

Permalink
Package.swift: fix for swift-tools 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaelIsaev committed Mar 2, 2020
1 parent 67e847e commit 0557e48
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ let package = Package(
.package(url: "https://github.com/vapor/jwt.git", from: "4.0.0-rc"),
],
targets: [
.target(name: "FCM", dependencies: ["Vapor", "JWT"]),
.testTarget(name: "FCMTests", dependencies: ["FCM"]),
.target(name: "FCM", dependencies: [
.product(name: "Vapor", package: "vapor"),
.product(name: "JWT", package: "jwt"),
]),
.testTarget(name: "FCMTests", dependencies: [
.target(name: "FCM"),
]),
]
)

0 comments on commit 0557e48

Please sign in to comment.