6
0

59 lines
2.6 KiB
Swift
Raw Normal View History

2024-09-10 09:04:07 +02:00
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "WebIdPayProductPlugin",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdPayProductPlugin", targets: ["WebIdPayProductPluginWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(
name: "WebIdIosBankIdentPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-bank-ident-plugin-spm",
2024-12-12 18:29:24 +01:00
.branch("redesign-v4-snapshots")
2024-09-10 09:04:07 +02:00
),
.package(
name: "WebIdDigitalSigningPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-digital-signing-plugin-spm",
2024-12-12 18:29:24 +01:00
.branch("redesign-v4-snapshots")
2024-09-10 09:04:07 +02:00
),
.package(
name: "WebIdIosIdentScanPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-ident-scan-plugin-spm",
2024-12-12 18:29:24 +01:00
.branch("redesign-v4-snapshots")
2024-09-10 09:04:07 +02:00
),
.package(
name: "WebIdOnDeviceDocumentScanner",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-on-device-document-scanner-spm",
2024-12-12 18:29:24 +01:00
.branch("redesign-v4-snapshots")
2024-09-10 09:04:07 +02:00
)
],
targets: [
.binaryTarget(
name: "WebIdPayProductPlugin",
2025-01-30 15:41:22 +01:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/redesign-v4-snapshots/de/webid-solutions/WebIdPayProductPlugin/14.3.0/WebIdPayProductPlugin.framework-v14.3.0-SNAPSHOT-1273.zip",
checksum: "bb3de3b77348cb3148d350d94113724af4a8258ee1ef2dcc314e8f35839fffa5"
2024-09-10 09:04:07 +02:00
),
.target(
name: "WebIdPayProductPluginWrapper",
dependencies: [
.target(name: "WebIdPayProductPlugin"),
// [target dependecies here]
.product(name: "WebIdIosBankIdentPlugin", package: "WebIdIosBankIdentPlugin"),
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
.product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
.product(name: "WebIdOnDeviceDocumentScanner", package: "WebIdOnDeviceDocumentScanner"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)