From d687912522858c2541c55b64f8940b6a380b2d5c Mon Sep 17 00:00:00 2001 From: mac-mini-003 Date: Fri, 19 Apr 2024 02:13:43 +0200 Subject: [PATCH] add new version 12.0.3-SNAPSHOT-1136 --- Package.swift | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/Package.swift b/Package.swift index e6b839d..df4df98 100644 --- a/Package.swift +++ b/Package.swift @@ -15,21 +15,36 @@ let package = Package( dependencies: [ // Dependencies declare other packages that this package depends on. .package( - name: "WebIdDigitalSigningPlugin", - url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", + name: "WebIdVideoIdentProductPlugin", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-product-plugin-spm.git", .branch("snapshots") ), .package( name: "WebIdVideoIdentPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm", .branch("snapshots") + ), + .package( + name: "WebIdDigitalSigningPlugin", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", + .branch("snapshots") + ), + .package( + name: "WebIdIosIdentScanPlugin", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm.git", + .branch("snapshots") + ), + .package( + name: "WebIdOnServerDocumentScanner", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm.git", + .branch("snapshots") ) ], targets: [ .binaryTarget( name: "WebIdMetaPlugin", - url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdMetaPlugin/12.0.2/WebIdMetaPlugin.framework-v12.0.2-SNAPSHOT-1128.zip", - checksum: "ca0edaab6796c4f5365ed92c7e04cf909e2ace4815c91a86960d394dd8789671" + url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdMetaPlugin/12.0.3/WebIdMetaPlugin.framework-v12.0.3-SNAPSHOT-1136.zip", + checksum: "0d8ace8cfae555e59ff4e7270d5e86ddaf1ea617d28f7b64a4ad45c75769bf55" ), .target( name: "WebIdMetaPluginWrapper", @@ -37,8 +52,11 @@ let package = Package( .target(name: "WebIdMetaPlugin"), // [target dependecies here] - .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), + .product(name: "WebIdVideoIdentProductPlugin", package: "WebIdVideoIdentProductPlugin"), .product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"), + .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), + .product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"), + .product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"), ] ) ],