Skip to content

Instantly share code, notes, and snippets.

@spinscale
Created February 5, 2013 10:37
Show Gist options
  • Save spinscale/4713627 to your computer and use it in GitHub Desktop.
Save spinscale/4713627 to your computer and use it in GitHub Desktop.
spark-groovy-jrebel-build.gradle
apply plugin: 'groovy'
apply plugin: 'idea'
repositories {
mavenCentral()
maven { url "http://www.sparkjava.com/nexus/content/repositories/spark/" }
maven { url "https://raw.github.com/neuland/jade4j/master/releases" }
}
// avoid groovy/jade asm clashes
configurations {
all*.exclude group: 'asm'
}
dependencies {
compile 'spark:spark:0.9.9.4-SNAPSHOT'
compile 'de.neuland:jade4j:0.3.8'
compile 'org.codehaus.groovy:groovy:2.1.0-beta-1'
compile 'org.slf4j:slf4j-log4j12:1.6.4'
testCompile 'junit:junit:4.11'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment