Skip to content
Snippets Groups Projects
Commit b0a4ce69 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Add Resolver depnendency

parent a70ab8d2
Branches
No related tags found
No related merge requests found
...@@ -33,6 +33,9 @@ ...@@ -33,6 +33,9 @@
F6A70E14275D445300C2FB00 /* Date+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6A70E13275D445300C2FB00 /* Date+Create.swift */; }; F6A70E14275D445300C2FB00 /* Date+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6A70E13275D445300C2FB00 /* Date+Create.swift */; };
F6CCA30A276FC53D00844F92 /* Logging in Frameworks */ = {isa = PBXBuildFile; productRef = F6CCA309276FC53D00844F92 /* Logging */; }; F6CCA30A276FC53D00844F92 /* Logging in Frameworks */ = {isa = PBXBuildFile; productRef = F6CCA309276FC53D00844F92 /* Logging */; };
F6CD575026D246470051B38E /* Float+Rounded.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CD574F26D246470051B38E /* Float+Rounded.swift */; }; F6CD575026D246470051B38E /* Float+Rounded.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CD574F26D246470051B38E /* Float+Rounded.swift */; };
F6EDE73327B4609F0030F810 /* Resolver in Frameworks */ = {isa = PBXBuildFile; productRef = F6EDE73227B4609F0030F810 /* Resolver */; };
F6EDE73727B461030030F810 /* CoreData+Extended.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6EDE73527B461030030F810 /* CoreData+Extended.swift */; };
F6EDE73827B461030030F810 /* ContextHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6EDE73627B461030030F810 /* ContextHolder.swift */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */ /* Begin PBXContainerItemProxy section */
...@@ -75,6 +78,8 @@ ...@@ -75,6 +78,8 @@
F6A251BD260B699100132DEC /* String+Html.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Html.swift"; sourceTree = "<group>"; }; F6A251BD260B699100132DEC /* String+Html.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Html.swift"; sourceTree = "<group>"; };
F6A70E13275D445300C2FB00 /* Date+Create.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Date+Create.swift"; sourceTree = "<group>"; }; F6A70E13275D445300C2FB00 /* Date+Create.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Date+Create.swift"; sourceTree = "<group>"; };
F6CD574F26D246470051B38E /* Float+Rounded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Float+Rounded.swift"; sourceTree = "<group>"; }; F6CD574F26D246470051B38E /* Float+Rounded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Float+Rounded.swift"; sourceTree = "<group>"; };
F6EDE73527B461030030F810 /* CoreData+Extended.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "CoreData+Extended.swift"; sourceTree = "<group>"; };
F6EDE73627B461030030F810 /* ContextHolder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContextHolder.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
...@@ -82,6 +87,7 @@ ...@@ -82,6 +87,7 @@
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
F6EDE73327B4609F0030F810 /* Resolver in Frameworks */,
F6CCA30A276FC53D00844F92 /* Logging in Frameworks */, F6CCA30A276FC53D00844F92 /* Logging in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
...@@ -120,6 +126,7 @@ ...@@ -120,6 +126,7 @@
F623A6822635B78500F50371 /* Utils */ = { F623A6822635B78500F50371 /* Utils */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
F6EDE73427B460EF0030F810 /* CoreData */,
F623A6532635B32900F50371 /* Collections */, F623A6532635B32900F50371 /* Collections */,
F68C2D402616482000042967 /* Date */, F68C2D402616482000042967 /* Date */,
F6A251B8260B696200132DEC /* Numbers */, F6A251B8260B696200132DEC /* Numbers */,
...@@ -220,6 +227,15 @@ ...@@ -220,6 +227,15 @@
path = Numbers; path = Numbers;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
F6EDE73427B460EF0030F810 /* CoreData */ = {
isa = PBXGroup;
children = (
F6EDE73627B461030030F810 /* ContextHolder.swift */,
F6EDE73527B461030030F810 /* CoreData+Extended.swift */,
);
path = CoreData;
sourceTree = "<group>";
};
/* End PBXGroup section */ /* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */ /* Begin PBXHeadersBuildPhase section */
...@@ -250,6 +266,7 @@ ...@@ -250,6 +266,7 @@
name = AppleLibs; name = AppleLibs;
packageProductDependencies = ( packageProductDependencies = (
F6CCA309276FC53D00844F92 /* Logging */, F6CCA309276FC53D00844F92 /* Logging */,
F6EDE73227B4609F0030F810 /* Resolver */,
); );
productName = AppleLibs; productName = AppleLibs;
productReference = F6A25196260B66FF00132DEC /* AppleLibs.framework */; productReference = F6A25196260B66FF00132DEC /* AppleLibs.framework */;
...@@ -302,6 +319,7 @@ ...@@ -302,6 +319,7 @@
mainGroup = F6A2518C260B66FF00132DEC; mainGroup = F6A2518C260B66FF00132DEC;
packageReferences = ( packageReferences = (
F6CCA308276FC53D00844F92 /* XCRemoteSwiftPackageReference "swift-log" */, F6CCA308276FC53D00844F92 /* XCRemoteSwiftPackageReference "swift-log" */,
F6EDE73127B4609F0030F810 /* XCRemoteSwiftPackageReference "Resolver" */,
); );
productRefGroup = F6A25197260B66FF00132DEC /* Products */; productRefGroup = F6A25197260B66FF00132DEC /* Products */;
projectDirPath = ""; projectDirPath = "";
...@@ -336,6 +354,7 @@ ...@@ -336,6 +354,7 @@
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
F68BFE6B263B28B000E893E5 /* UIViewController+Screenshot.swift in Sources */, F68BFE6B263B28B000E893E5 /* UIViewController+Screenshot.swift in Sources */,
F6EDE73827B461030030F810 /* ContextHolder.swift in Sources */,
F623A65E2635B38200F50371 /* CharacterSet+Url.swift in Sources */, F623A65E2635B38200F50371 /* CharacterSet+Url.swift in Sources */,
F673A9942635EF510017AD37 /* DataManager.swift in Sources */, F673A9942635EF510017AD37 /* DataManager.swift in Sources */,
F6A251BA260B697300132DEC /* Double+Rounded.swift in Sources */, F6A251BA260B697300132DEC /* Double+Rounded.swift in Sources */,
...@@ -356,6 +375,7 @@ ...@@ -356,6 +375,7 @@
F623A6742635B5BE00F50371 /* Enum+Extended.swift in Sources */, F623A6742635B5BE00F50371 /* Enum+Extended.swift in Sources */,
F673A9962635EF510017AD37 /* ResponseError.swift in Sources */, F673A9962635EF510017AD37 /* ResponseError.swift in Sources */,
F673A9992635EF510017AD37 /* RequestBuilder.swift in Sources */, F673A9992635EF510017AD37 /* RequestBuilder.swift in Sources */,
F6EDE73727B461030030F810 /* CoreData+Extended.swift in Sources */,
F6A70E14275D445300C2FB00 /* Date+Create.swift in Sources */, F6A70E14275D445300C2FB00 /* Date+Create.swift in Sources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
...@@ -635,6 +655,14 @@ ...@@ -635,6 +655,14 @@
minimumVersion = 1.0.0; minimumVersion = 1.0.0;
}; };
}; };
F6EDE73127B4609F0030F810 /* XCRemoteSwiftPackageReference "Resolver" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/hmlongco/Resolver.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 1.1.4;
};
};
/* End XCRemoteSwiftPackageReference section */ /* End XCRemoteSwiftPackageReference section */
/* Begin XCSwiftPackageProductDependency section */ /* Begin XCSwiftPackageProductDependency section */
...@@ -643,6 +671,11 @@ ...@@ -643,6 +671,11 @@
package = F6CCA308276FC53D00844F92 /* XCRemoteSwiftPackageReference "swift-log" */; package = F6CCA308276FC53D00844F92 /* XCRemoteSwiftPackageReference "swift-log" */;
productName = Logging; productName = Logging;
}; };
F6EDE73227B4609F0030F810 /* Resolver */ = {
isa = XCSwiftPackageProductDependency;
package = F6EDE73127B4609F0030F810 /* XCRemoteSwiftPackageReference "Resolver" */;
productName = Resolver;
};
/* End XCSwiftPackageProductDependency section */ /* End XCSwiftPackageProductDependency section */
}; };
rootObject = F6A2518D260B66FF00132DEC /* Project object */; rootObject = F6A2518D260B66FF00132DEC /* Project object */;
......
...@@ -14,12 +14,14 @@ let package = Package( ...@@ -14,12 +14,14 @@ let package = Package(
], ],
dependencies: [ dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"), .package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
.package(url: "https://github.com/hmlongco/Resolver.git", from: "1.1.4"),
], ],
targets: [ targets: [
.target( .target(
name: "AppleLibs", name: "AppleLibs",
dependencies: [ dependencies: [
.product(name: "Logging", package: "swift-log") .product(name: "Logging", package: "swift-log"),
.product(name: "Resolver", package: "Resolver")
], ],
path: "AppleLibs" path: "AppleLibs"
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment