All,
I have a straightforward out-of-the-box Grails project without any customizations. I have a simple page, simple controller, simple service; no problem.
Problem: I would like to interact with our own software platform via its API. For that I need to refer to our internal jar artifacts. We have our own Ivy repository where we manage internal/external dependencies. I was unable to configure BuildConfig.groovy to point to the internal repository. Here is what I tried based on these instructions
/*
* Configure our resolver.
*/
def libResolver = new org.apache.ivy.plugins.resolver.URLResolver()
['libraries', 'builds'].each {
libResolver.addArtifactPattern(
"http://my.repository/${it}/" +
"[organisation]/[module]/[revision]/[type]s/[artifact].[ext]")
libResolver.addIvyPattern(
"http://my.repository/${it}/" +
"[organisation]/[module]/[revision]/[type]s/[artifact].[ext]")
}
libResolver.name = "my-repository"
libResolver.settings = ivySettings
resolver libResolver
This fails pointing to the offending line
resolver libResolver
Researching I found just a few articles about this, removed the offending line, got more errors. Removed more offending lines, no errors, but specifying my dependencies in the "dependencies" section did not resolve them at all.
Question:
Has anyone successfully managed to configure a grails project with their internal ivy repo for dependency management?