-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
28 lines (24 loc) · 947 Bytes
/
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
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "XcodeReleasesApi",
platforms: [
.macOS(.v10_15)
],
products: [
.library(name: "XcodeReleasesApi", targets: ["App"]),
],
dependencies: [
// 💧 A server-side Swift web framework.
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "3.0.0")),
// 🍎 APNS for Sending Remote and PkPush Notifications
.package(url: "https://github.com/jeffctown/APNS.git", .upToNextMajor(from: "1.0.0")),
// 🤖 Xcode Releases Data (fork)
.package(url: "https://github.com/jeffctown/XcodeReleasesData.git", .upToNextMajor(from: "1.0.0"))
],
targets: [
.target(name: "App", dependencies: ["Vapor", "APNSVapor", "XCModel"]),
.target(name: "Run", dependencies: ["App"]),
.testTarget(name: "AppTests", dependencies: ["App"])
]
)