Skip to content

Instantly share code, notes, and snippets.

@blbradley
Last active August 29, 2015 14:10
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 blbradley/cec0a94ed4d01eeb0030 to your computer and use it in GitHub Desktop.
Save blbradley/cec0a94ed4d01eeb0030 to your computer and use it in GitHub Desktop.
gradle file for running Apache Storm locally
apply plugin: 'java'
repositories {
mavenCentral()
maven {
url 'http://clojars.org/repo/'
}
}
dependencies {
compile 'org.apache.storm:storm-core:0.9.3'
}
task wordcount(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath + files('multilang')
main = 'javatest.WordCountTopology'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment