// 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: "WebIdEPassProductPlugin", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdEPassProductPlugin", targets: ["WebIdEPassProductPluginWrapper"]), ], dependencies: [ // Dependencies declare other packages that this package depends on. .package( name: "WebIdSdkUiKitComponents", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-sdk-ui-components-spm.git", .branch("experimental") ), .package( name: "WebIdEPassPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-epass-plugin-spm.git", .branch("experimental") ), .package( name: "WebIdIosIdentScanPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm", .branch("experimental") ), .package( name: "WebIdOnServerDocumentScanner", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm", .branch("experimental") ) ], targets: [ .binaryTarget( name: "WebIdEPassProductPlugin", url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdEPassProductPlugin/220.4.2/WebIdEPassProductPlugin.framework-v220.4.2-SNAPSHOT-1879.zip", checksum: "e6afd9d9f43888e26bd559a49b8a5fbb0a41e6807489d7f5ec9f10c137a5b995" ), .target( name: "WebIdEPassProductPluginWrapper", dependencies: [ .target(name: "WebIdEPassProductPlugin"), // [target dependecies here] .product(name: "WebIdSdkUiKitComponents", package: "WebIdSdkUiKitComponents"), .product(name: "WebIdEPassPlugin", package: "WebIdEPassPlugin"), .product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"), .product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"), ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )