Skip to content

Commit

Permalink
Merge pull request limcheekin#6 from rbramley/patch-1
Browse files Browse the repository at this point in the history
Update grails-app/conf/BuildConfig.groovy to declare dependencies
  • Loading branch information
limcheekin committed Jan 13, 2012
2 parents fe029a6 + d5aaade commit 4bd8f54
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion grails-app/conf/BuildConfig.groovy
Expand Up @@ -17,7 +17,7 @@ grails.project.dependency.resolution = {
// uncomment the below to enable remote dependency resolution
// from public Maven repositories
//mavenLocal()
//mavenCentral()
mavenCentral()
//mavenRepo "http://snapshots.repository.codehaus.org"
//mavenRepo "http://repository.codehaus.org"
//mavenRepo "http://download.java.net/maven/2/"
Expand All @@ -27,5 +27,21 @@ grails.project.dependency.resolution = {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

// runtime 'mysql:mysql-connector-java:5.1.13'
compile ('org.apache.mahout:mahout-utils:0.5',
'org.apache.mahout:mahout-math:0.5',
'org.apache.mahout:mahout-core:0.5',
'org.uncommons.maths:uncommons-maths:1.2',
'com.google.guava:guava:r03',
'com.google.collections:google-collections:1.0-rc2') {
excludes "slf4j-jcl"
}
runtime ('org.apache.mahout:mahout-utils:0.5',
'org.apache.mahout:mahout-math:0.5',
'org.apache.mahout:mahout-core:0.5',
'org.uncommons.maths:uncommons-maths:1.2',
'com.google.guava:guava:r03',
'com.google.collections:google-collections:1.0-rc2') {
excludes "slf4j-jcl"
}
}
}

0 comments on commit 4bd8f54

Please sign in to comment.