Last active
August 29, 2015 14:10
-
-
Save blbradley/cec0a94ed4d01eeb0030 to your computer and use it in GitHub Desktop.
gradle file for running Apache Storm locally
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
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