Skip to content

Instantly share code, notes, and snippets.

@mgdelacroix
Created August 17, 2013 12:25
Show Gist options
  • Save mgdelacroix/6256672 to your computer and use it in GitHub Desktop.
Save mgdelacroix/6256672 to your computer and use it in GitHub Desktop.
Gradle initial file to manage a grails project. Taken from the GR8 talk from Luke Daley "Building Grails Apps With Gradle" http://www.youtube.com/watch?v=FwZvDU2Jeh8
buildscript {
repositories {
maven { url "http://repo.grails.org/grails/repo" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:2.0.0-SNAPSHOT"
}
}
repositories {
maven { url "http://repo.grails.org/grails/repo" }
}
apply plugin: "grails"
version "0.1"
group = "mygroup"
grails {
grailsVersion "2.2.4"
}
dependencies {
compile "org.grails:grails-plugin-tomcat:$grails.grailsVersion"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment