Skip to content

Instantly share code, notes, and snippets.

@tyama
Created June 20, 2013 15:37
Show Gist options
  • Save tyama/5823853 to your computer and use it in GitHub Desktop.
Save tyama/5823853 to your computer and use it in GitHub Desktop.
Building Grails apps with Gradle.
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 "1.0"
group = "net.tyama"
grails {
grailsVersion "2.2.2"
}
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