forked from Swinject/SwinjectAutoregistration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Package.test.swift
33 lines (31 loc) · 932 Bytes
/
.Package.test.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "SwinjectAutoregistration",
products: [
.library(
name: "SwinjectAutoregistration",
targets: ["SwinjectAutoregistration"])
],
dependencies: [
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.7.1"),
.package(url: "https://github.com/Quick/Quick", from: "3.0.0"),
.package(url: "https://github.com/Quick/Nimble", from: "9.0.0")
],
targets: [
.target(
name: "SwinjectAutoregistration",
dependencies: [
"Swinject",
],
path: "Sources"),
.testTarget(
name: "SwinjectAutoregistrationTests",
dependencies: [
"Quick",
"Nimble",
"Swinject",
"SwinjectAutoregistration",
])
]
)