第一种指定私有库的方法:
在podfile中,默认指定仓库地址:
source 'https://github.com/CocoaPods/Specs.git'
但是如果要指定svn私有仓库地址:必须在podfile加入
plugin 'cocoapods-repo-svn', :sources => [
‘https://120.00.00.00:9898/svn/APP/iOS/YHComponentSpecRepo'
]
如果podfile既有远程仓库,又有本地仓库,必须同时指定多个仓库,
不然找不到私有仓库或者远程库。
第二种指定本地库的方法:
pod 'YHCommonSDK', :svn => 'https://120.00.00.00:9898/svn/APP/iOS/YHComponent/YHCommonSDK', :tag => '1.0.0'
第三种指定本地库的方法:
把私有库的podspec文件 pod trunk到cocoapods上,此种方法不建议。
网友评论