6
0

59 lines
2.4 KiB
Swift
Raw Normal View History

2024-03-22 10:33:14 +01: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/SwiftPackages/webid-bank-ident-plugin-spm",
2024-06-18 16:51:23 +02:00
.exact("10.0.1")
2024-03-22 10:33:14 +01:00
),
.package(
name: "WebIdDigitalSigningPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm",
2024-05-28 10:25:48 +02:00
.exact("11.0.0")
2024-03-22 10:33:14 +01:00
),
.package(
name: "WebIdIosIdentScanPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm",
2024-05-28 10:25:48 +02:00
.exact("12.0.0")
2024-03-22 10:33:14 +01:00
),
.package(
name: "WebIdOnDeviceDocumentScanner",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-device-document-scanner-spm",
2024-05-28 10:25:48 +02:00
.exact("12.0.0")
2024-03-22 10:33:14 +01:00
)
],
targets: [
.binaryTarget(
name: "WebIdPayProductPlugin",
2024-06-18 16:51:23 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdPayProductPlugin/13.0.1/WebIdPayProductPlugin.framework-v13.0.1.zip",
checksum: "2149e5afd84a407ead428a7d14fbdc8d476972dea6a347c3441e3520af87eaa8"
2024-03-22 10:33:14 +01: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]
)