Skip to content

Instantly share code, notes, and snippets.

@mike-neck
Created November 5, 2011 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mike-neck/1341171 to your computer and use it in GitHub Desktop.
Save mike-neck/1341171 to your computer and use it in GitHub Desktop.
Fundamental Web Project build script written by @mike_neck
/**
* Fundamental Gradle Build File
* written @mike_neck ( https://twitter.com/#!/mike_neck )
* for web project
*/
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'war'
apply plugin: 'jetty'
apply plugin: 'eclipse'
apply plugin: 'idea'
repositories {
mavenCentarl()
}
dependencies {
compile 'org.codehaus.groovy:groovy:1.8.3'
compile 'org.eclipse.jetty:jetty-server:7.5.3.v20111011'
testCompile 'junit:junit:4.10'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment