6
0

add new version 12.0.3-SNAPSHOT-1136

This commit is contained in:
mac-mini-003 2024-04-19 02:13:43 +02:00
parent 583127eec0
commit d687912522

View File

@ -15,21 +15,36 @@ let package = Package(
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package( .package(
name: "WebIdDigitalSigningPlugin", name: "WebIdVideoIdentProductPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-product-plugin-spm.git",
.branch("snapshots") .branch("snapshots")
), ),
.package( .package(
name: "WebIdVideoIdentPlugin", name: "WebIdVideoIdentPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm",
.branch("snapshots") .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: [ targets: [
.binaryTarget( .binaryTarget(
name: "WebIdMetaPlugin", 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", 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: "ca0edaab6796c4f5365ed92c7e04cf909e2ace4815c91a86960d394dd8789671" checksum: "0d8ace8cfae555e59ff4e7270d5e86ddaf1ea617d28f7b64a4ad45c75769bf55"
), ),
.target( .target(
name: "WebIdMetaPluginWrapper", name: "WebIdMetaPluginWrapper",
@ -37,8 +52,11 @@ let package = Package(
.target(name: "WebIdMetaPlugin"), .target(name: "WebIdMetaPlugin"),
// [target dependecies here] // [target dependecies here]
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), .product(name: "WebIdVideoIdentProductPlugin", package: "WebIdVideoIdentProductPlugin"),
.product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"), .product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"),
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
.product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
.product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"),
] ]
) )
], ],