Skip to content

Instantly share code, notes, and snippets.

@cdeszaq
Created March 22, 2013 16:15
Show Gist options
  • Save cdeszaq/5222593 to your computer and use it in GitHub Desktop.
Save cdeszaq/5222593 to your computer and use it in GitHub Desktop.
Plugins and Dependencies from BuildConfig.groovy
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.
// Allows connecting to MySQL DBs
runtime 'mysql:mysql-connector-java:5.1.22'
// For JodaTime plugin
compile "org.jadira.usertype:usertype.jodatime:1.9.1"
// So that spock can work with Grails 2.2
test "org.spockframework:spock-grails-support:0.7-groovy-2.0"
}
plugins {
// Server
build ":tomcat:$grailsVersion"
// Testing
test(":spock:0.7") {
exclude "spock-grails-support"
}
// Metrics, Logging, and Debug
// compile ":yammer-metrics:2.1.2-3" // Currently broken, but would be good to have
// compile ":profiler:0.4" // Currently broken, but would be good to have
compile ":grails-melody:1.14"
compile ":runtime-logging:0.4"
compile ":console:1.2"
// Security
compile ":spring-security-core:1.2.7.3"
compile ":spring-security-ldap:1.0.6"
// Other
compile ':cache:1.0.1'
compile ":cache-headers:1.1.5"
compile ":joda-time:1.4"
compile ":mail:1.0.1"
compile ":ldap:0.8.2"
// DB
runtime ":hibernate:$grailsVersion"
runtime ":database-migration:1.3.1"
// UI
runtime ":jquery:1.8.3"
compile ":jquery-ui:1.8.24"
runtime ":modernizr:2.6.2"
compile ":fields:1.3"
compile ":twitter-bootstrap:2.3.0"
// Resources Plugin
runtime ":resources:1.1.6"
runtime ":zipped-resources:1.0"
runtime ":cached-resources:1.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment