Grails 2.3.10如何從自定義工件回購加載grails插件?
我已經創作了一個Grails插件供我公司使用,並安裝在公司的Artifactory回購庫中。我如何設置另一個項目的BuildConfig,以便在安裝插件時檢查公司的私人工件回購?
這是我曾嘗試:
repositories {
...
grailsRepo "http://artifactory.mycompany.com/"
}
,也...
repositories {
...
mavenRepo "http://artifactory.mycompany.com/"
}
這些都不似乎有任何效果。什麼是正確的配置更改或添加到grails插件回購?
理想情況下,我想無論是定製回購和插件進行檢查中央回購Grails的。
編輯:
爲了進一步澄清...我想我的項目被配置成下拉只存在於公司的artifactory的服務器上,而不是在中央Grails的插件式回購的插件。
我從Grails的以下輸出編譯:
Error |
Resolve error obtaining dependencies: Could not find artifact org.grails.plugins:cascade-validation:zip:0.1.0 in grailsCentral (http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
Error |
Resolve error obtaining dependencies: Could not find artifact org.grails.plugins:cascade-validation:zip:0.1.0 in grailsCentral (http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
Error |
Resolve error obtaining dependencies: Could not find artifact org.grails.plugins:cascade-validation:zip:0.1.0 in grailsCentral (http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
Error |
Could not find artifact org.grails.plugins:cascade-validation:zip:0.1.0 in grailsCentral (http://repo.grails.org/grails/plugins)
它看起來像公司服務器不被訪問基於生成輸出。
mavenRepo是足夠的回購 「基於網絡」。你確定,你已經把插件放在'plugins {}'而不是'dependencies {}'中。有沒有錯誤? '--verbose'和/或'--debug'是否會給出更好的錯誤? – cfrick 2014-08-28 18:32:14
@cfrick:已更新。謝謝! – RMorrisey 2014-08-28 22:05:02
你正在使用什麼'grails.project.dependency.resolver'? – cfrick 2014-08-28 22:40:31