// 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: "WebIdAccountIdProductPlugin", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdAccountIdProductPlugin", targets: ["WebIdAccountIdProductPluginWrapper"]), ], dependencies: [ // Dependencies declare other packages that this package depends on. .package( name: "WebIdOnServerDocumentScanner", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm", .exact("23.1.1") ), .package( name: "WebIdDocumentScanner", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-document-scanner-spm.git", .exact("23.1.1") ), .package( name: "WebIdIosIdentScanPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm", .exact("23.1.1") ), .package( name: "WebIdDigitalSigningPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", .exact("23.0.3") ), .package( name: "WebIdIosBankIdentPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-bank-ident-plugin-spm", .exact("22.0.1") ) ], targets: [ .binaryTarget( name: "WebIdAccountIdProductPlugin", url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdAccountIdProductPlugin/22.5.3/WebIdAccountIdProductPlugin.framework-v22.5.3-SNAPSHOT-1728.zip", checksum: "8f66580a5d8ae15d9cabffd45b132d98dca817f809ca5c8a2d0fb67349e30adc" ), .target( name: "WebIdAccountIdProductPluginWrapper", dependencies: [ .target(name: "WebIdAccountIdProductPlugin"), // [target dependecies here] .product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"), .product(name: "WebIdDocumentScanner", package: "WebIdDocumentScanner"), .product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"), .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), .product(name: "WebIdIosBankIdentPlugin", package: "WebIdIosBankIdentPlugin"), ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )