Skip to content

Commit

Permalink
move plugins into build config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrice committed Sep 21, 2014
1 parent 7f307de commit f9ee83d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 0 additions & 3 deletions application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
#Mon Sep 08 15:43:57 CDT 2014
app.grails.version=2.2.5
app.name=WeakSSL
plugins.hibernate=2.2.5
plugins.release=1.0.1
plugins.tomcat=2.2.5
10 changes: 8 additions & 2 deletions grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,21 @@ 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/"
//mavenRepo "http://repository.jboss.com/maven2/"
}
dependencies {
}
plugins {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

build(":tomcat:$grailsVersion",
":release:2.2.1",
":rest-client-builder:1.0.3") {
export = false
}
// runtime 'mysql:mysql-connector-java:5.1.13'
}
}

0 comments on commit f9ee83d

Please sign in to comment.