tags:

views:

151

answers:

1

I have a password protected internal maven repository I'd like to use to resolve dependencies in grails.

Does anyone know how to configure grails to use authentication when accessing a repository?

I'm running grails 1.2.1.

+1  A: 

You can look in the docs: 3.7.2) Dependency Repositories -> Authentication

From the Docs:

If your repository requires some form of authentication you can specify as such using a credentials block:

credentials {
  realm = ".."
  host = "localhost"
  username = "myuser"
  password = "mypass"
}
Brandon
This worked great! Thanks!
ScArcher2