6
0

add new version 10.0.0-SNAPSHOT-231

This commit is contained in:
mac-mini-003 2024-03-07 12:24:13 +01:00
parent 67c01f6dbf
commit d2fe06553c
2 changed files with 50 additions and 0 deletions

46
Package.swift Normal file
View File

@ -0,0 +1,46 @@
// 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: "WebIdPluginCore",
platforms: [
.iOS(.v13)
],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(name: "WebIdPluginCore", targets: ["WebIdPluginCoreWrapper"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(
name: "WebIdUiKitComponents",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ui-components-spm.git",
.branch("snapshots")
),
.package(
name: "WebIdIosSdk",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-sdk-spm.git",
.branch("snapshots")
)
],
targets: [
.binaryTarget(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdPluginCore/10.0.0/WebIdPluginCore.framework-v10.0.0-SNAPSHOT-231.zip",
checksum: "d83b138e334e3a763d823c2f2b0ba299dbb02ac7351f385ae0e39b83e76b9d99"
),
.target(
name: "WebIdPluginCoreWrapper",
dependencies: [
.target(name: "WebIdPluginCore"),
// [target dependecies here]
.product(name: "WebIdUiKitComponents", package: "WebIdUiKitComponents"),
.product(name: "WebIdIosSdk", package: "WebIdIosSdk"),
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)

View File

@ -0,0 +1,4 @@
//
// Created by WebID Solutions GmbH | www.webid-solutions.de.
// See the file "LICENSE" for the full license governing this code.
//