Created
August 17, 2013 12:25
-
-
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
This file contains 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 "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