我试图从使用Ivy迁移到Grails 2.4项目中使用Aether解析器。
我遇到的问题与外部化凭据有关。与此相关的信息可以在Grails手册中找到:http://grails.org/doc/latest/guide/conf.html#dependencyRepositories
似乎没有一种记录的方式可以将使用Maven的凭证外部化,就像使用Ivy一样。
使用常春藤,我可以将这样的内容放入我的.grails/settings.groovy
文件中:
grails.project.ivy.authentication = {
credentials {
realm = "My Repo"
host = "repo.mycustomrepo.com"
username = "user"
password = "password"
}
}
要使用Aether,我强制将凭据块直接放在我的BuildConfig.groovy
中,如下所示:
repositories {
inherits true // Whether to inherit repository definitions from plugins
grailsPlugins()
grailsHome()
mavenLocal()
grailsCentral()
mavenCentral()
mavenRepo("http://repo.mycustomrepo.com") {
//Add authentication details to repository connection
auth([
username: 'user',
password: 'password'
])
}
}
不幸的是,这对我来说确实存在问题,因为在我的组织中我们使用Artifactory配置为使用我们的LDAP凭据。这是一个问题,因为我不想在源代码管理中提交我的凭据。
是否有未记录的解决方案,或者Grails不支持吗?
答案 0 :(得分:9)
使用id
:
mavenRepo(id:'myrepo', url:"http://localhost:8085/artifactory/libs-release-local/")
然后使用之前指定的~/.grails/settings.groovy
:
id
中定义您的凭据
grails.project.dependency.authentication = {
credentials {
id = "myrepo"
username = "foo"
password = "bar"
}
}