-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathElasticSwift.podspec
33 lines (27 loc) · 1.33 KB
/
ElasticSwift.podspec
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
Pod::Spec.new do |s|
s.name = "ElasticSwift"
s.version = "1.0.0-beta.1"
s.summary = "Elasticsearch client in native swift"
s.description = "ElasticSwift allows you to bring prower of elasticsearch in your apps on macOS, iOS, tvOS, watchOS and linux."
s.homepage = "http://github.com/pksprojects/ElasticSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "pksprojects" => "support@pksprojects.com" }
s.source = { :git => "https://github.com/pksprojects/ElasticSwift.git", :tag => "v#{s.version}", :submodules => true }
s.swift_version = '5.0'
s.cocoapods_version = '>=1.6.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.source_files = 'Sources/ElasticSwift/**/*.swift'
s.dependency 'SwiftNIO', '~> 2.22'
s.dependency 'SwiftNIOHTTP1', '~> 2.22'
s.dependency 'SwiftNIOTLS', '~> 2.22'
s.dependency 'SwiftNIOConcurrencyHelpers', '~> 2.22'
s.dependency 'SwiftNIOFoundationCompat', '~> 2.22'
s.dependency 'SwiftNIOTransportServices', '~> 1.9'
s.dependency 'Logging', '~> 1.4'
s.dependency 'ElasticSwiftCore', "#{s.version}"
s.dependency 'ElasticSwiftNetworking', "#{s.version}"
s.dependency 'ElasticSwiftQueryDSL', "#{s.version}"
s.dependency 'ElasticSwiftCodableUtils', "#{s.version}"
end