Files
asconnect-service/Package.swift
T

67 lines
2.1 KiB
Swift
Raw Normal View History

2025-10-05 23:16:54 +00:00
// swift-tools-version: 5.10
//===----------------------------------------------------------------------===
//
// This source file is part of the ASConnectService open source project
//
// Copyright (c) 2025 Röck+Cöde VoF. and the ASConnectService project authors
// Licensed under the EUPL 1.2 or later.
//
// See LICENSE for license information
// See CONTRIBUTORS for the list of ASConnectService project authors
//
//===----------------------------------------------------------------------===
2025-10-06 00:45:21 +02:00
import PackageDescription
let package = Package(
2025-10-05 23:16:54 +00:00
name: AppStoreConnectService.package,
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.visionOS(.v1),
.watchOS(.v6)
],
2025-10-06 00:45:21 +02:00
products: [
.library(
2025-10-05 23:16:54 +00:00
name: AppStoreConnectService.package,
targets: [AppStoreConnectService.target]
2025-10-06 00:45:21 +02:00
),
],
2025-10-05 23:16:54 +00:00
dependencies: [
2025-10-06 14:51:36 +00:00
.package(url: "https://github.com/apple/swift-openapi-generator.git", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.5.0"),
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.2"),
2025-10-05 23:16:54 +00:00
.package(url: "https://github.com/swiftlang/swift-docc-plugin", from: "1.1.0")
],
2025-10-06 00:45:21 +02:00
targets: [
.target(
2025-10-05 23:16:54 +00:00
name: AppStoreConnectService.target,
2025-10-06 14:51:36 +00:00
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession")
],
path: "Sources/ASConnectService",
plugins: [
.plugin(name: "OpenAPIGenerator", package: "swift-openapi-generator")
]
2025-10-06 00:45:21 +02:00
),
.testTarget(
2025-10-05 23:16:54 +00:00
name: AppStoreConnectService.test,
dependencies: [
.byName(name: AppStoreConnectService.target)
],
path: "Tests/ASConnectService"
2025-10-06 00:45:21 +02:00
),
]
)
2025-10-05 23:16:54 +00:00
// MARK: - Constants
enum AppStoreConnectService {
static let package = "asconnect-service"
static let target = "ASConnectService"
static let test = "\(AppStoreConnectService.target)Tests"
}