Skip to content

Commit

Permalink
revert removal of default grailsHome() repo
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Nov 22, 2012
1 parent 35fffa6 commit 847119b
Showing 1 changed file with 12 additions and 0 deletions.
Expand Up @@ -87,6 +87,18 @@ public Object doCall() {
DependencyConfigurationConfigurer rootDelegate = (DependencyConfigurationConfigurer)getDelegate();

rootDelegate.log("warn");

// Repositories
rootDelegate.repositories(new Closure(this, GrailsCoreDependencies.this) {
public Object doCall() {
RepositoriesConfigurer repositoriesDelegate = (RepositoriesConfigurer)getDelegate();

repositoriesDelegate.grailsPlugins();
repositoriesDelegate.grailsHome();

return null;
}
});
// Dependencies

rootDelegate.dependencies(new Closure(this, GrailsCoreDependencies.this) {
Expand Down

0 comments on commit 847119b

Please sign in to comment.