Created
June 20, 2013 15:37
-
-
Save tyama/5823853 to your computer and use it in GitHub Desktop.
Building Grails apps with Gradle.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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