Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b7448204b | ||
|
|
0a6a11c02f | ||
|
|
a3bbfa31d9 | ||
|
|
9a90e09c14 | ||
|
|
2cfb9a692d | ||
|
|
d9f4299c29 | ||
|
|
22d8a029cf | ||
|
|
0647246cb2 | ||
|
|
66021e3495 | ||
|
|
fd9491dbad | ||
|
|
741488b861 | ||
|
|
86b14ce58f | ||
|
|
ec597f1679 | ||
|
|
7af7e62379 | ||
|
|
e56c3ed5d9 |
58
Package.swift
Normal file
58
Package.swift
Normal file
@ -0,0 +1,58 @@
|
||||
// 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: "WebIdAutoIdProductPlugin",
|
||||
platforms: [
|
||||
.iOS(.v13)
|
||||
],
|
||||
products: [
|
||||
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
||||
.library(name: "WebIdAutoIdProductPlugin", targets: ["WebIdAutoIdProductPluginWrapper"]),
|
||||
],
|
||||
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",
|
||||
.branch("snapshots")
|
||||
),
|
||||
.package(
|
||||
name: "WebIdIosIdentScanPlugin",
|
||||
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm",
|
||||
.branch("snapshots")
|
||||
),
|
||||
.package(
|
||||
name: "WebIdDocumentScanner",
|
||||
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-document-scanner-spm.git",
|
||||
.branch("snapshots")
|
||||
),
|
||||
.package(
|
||||
name: "WebIdOnServerDocumentScanner",
|
||||
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm",
|
||||
.branch("snapshots")
|
||||
)
|
||||
],
|
||||
targets: [
|
||||
.binaryTarget(
|
||||
name: "WebIdAutoIdProductPlugin",
|
||||
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdAutoIdProductPlugin/21.1.2/WebIdAutoIdProductPlugin.framework-v21.1.2-SNAPSHOT-1536.zip",
|
||||
checksum: "1c5cde997e7adabd95a5bbaf39be96c4399457621871187b5acf0931959bd6bb"
|
||||
),
|
||||
.target(
|
||||
name: "WebIdAutoIdProductPluginWrapper",
|
||||
dependencies: [
|
||||
.target(name: "WebIdAutoIdProductPlugin"),
|
||||
// [target dependecies here]
|
||||
|
||||
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
|
||||
.product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
|
||||
.product(name: "WebIdDocumentScanner", package: "WebIdDocumentScanner"),
|
||||
.product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"),
|
||||
]
|
||||
)
|
||||
],
|
||||
swiftLanguageVersions: [SwiftVersion.v5]
|
||||
)
|
||||
4
Sources/WebIdAutoIdProductPluginWrapper/Dummy.swift
Normal file
4
Sources/WebIdAutoIdProductPluginWrapper/Dummy.swift
Normal 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.
|
||||
//
|
||||
Loading…
x
Reference in New Issue
Block a user