59 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Swift
		
	
	
	
	
	
| // 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: "WebIdMetaPlugin",
 | |
|     platforms: [
 | |
|         .iOS(.v13)
 | |
|     ],
 | |
|     products: [
 | |
|         // Products define the executables and libraries a package produces, and make them visible to other packages.
 | |
|         .library(name: "WebIdMetaPlugin", targets: ["WebIdMetaPluginWrapper"]),
 | |
|     ],
 | |
|     dependencies: [
 | |
|         // Dependencies declare other packages that this package depends on.
 | |
|         .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",
 | |
|             .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: "WebIdMetaPlugin",
 | |
|             url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdMetaPlugin/21.0.4/WebIdMetaPlugin.framework-v21.0.4-SNAPSHOT-1520.zip",
 | |
|             checksum: "ccc3aafa3eadd458063e0375a88017446e52d42188ee02e0d47beb55b946a58c"
 | |
|         ),
 | |
|         .target(
 | |
|             name: "WebIdMetaPluginWrapper",
 | |
|             dependencies: [
 | |
|                 .target(name: "WebIdMetaPlugin"),
 | |
|                 // [target dependecies here]
 | |
|                 
 | |
|                 .product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"),
 | |
|                 .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
 | |
|                 .product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
 | |
|                 .product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"),
 | |
|             ]
 | |
|         )
 | |
|     ],
 | |
|     swiftLanguageVersions: [SwiftVersion.v5]
 | |
| )
 |