mirror of
https://github.com/Moya/Moya.git
synced 2026-03-18 19:52:28 +00:00
51 lines
1.8 KiB
Swift
51 lines
1.8 KiB
Swift
// swift-tools-version:5.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Moya",
|
|
platforms: [
|
|
.macOS(.v10_12),
|
|
.iOS(.v10),
|
|
.tvOS(.v10),
|
|
.watchOS(.v3)
|
|
],
|
|
products: [
|
|
.library(name: "Moya", targets: ["Moya"]),
|
|
.library(name: "ReactiveMoya", targets: ["ReactiveMoya"]),
|
|
.library(name: "RxMoya", targets: ["RxMoya"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.0.0")),
|
|
.package(url: "https://github.com/Moya/ReactiveSwift.git", .upToNextMajor(from: "6.1.0")),
|
|
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
|
|
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "2.0.0")), // dev
|
|
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "8.0.0")), // dev
|
|
.package(url: "https://github.com/AliSoftware/OHHTTPStubs.git", .upToNextMajor(from: "9.0.0")), // dev
|
|
.package(url: "https://github.com/shibapm/Rocket", .upToNextMajor(from: "1.0.0")) // dev
|
|
],
|
|
targets: [
|
|
.target(name: "Moya", dependencies: ["Alamofire"]),
|
|
.target(name: "ReactiveMoya", dependencies: ["Moya", "ReactiveSwift"]),
|
|
.target(name: "RxMoya", dependencies: ["Moya", "RxSwift"]),
|
|
.testTarget(name: "MoyaTests", dependencies: ["Moya", "RxMoya", "ReactiveMoya", "Quick", "Nimble", "OHHTTPStubsSwift"]) // dev
|
|
]
|
|
)
|
|
|
|
#if canImport(PackageConfig)
|
|
import PackageConfig
|
|
|
|
let config = PackageConfiguration([
|
|
"rocket": [
|
|
"before": [
|
|
"scripts/update_changelog.sh",
|
|
"scripts/update_podspec.sh"
|
|
],
|
|
"after": [
|
|
"rake create_release\\[\"$VERSION\"\\]",
|
|
"scripts/update_docs_website.sh"
|
|
]
|
|
]
|
|
]).write()
|
|
#endif
|