On 2014-03-11 23:09, Kreutzer, Edward wrote:
Perhaps a naïve question here, but how can I compile and submit a
storm or trident topology without using Maven or Lienengen?
*Ted Kreutzer*
1. Package everything into a single jar-file. This jar must include all
your dependencies except storm itself. There are may ways to do that.
Try "One-JAR" if you don't want maven :)
2. Execute
storm jar PATH_TO_YOUR_JAR_FILE YOUR_JAR_MAIN_CLASS ARGUMENTS
Example:
storm jar C:\example\example-jar-with-dependencies.jar
com.examplecompany.MyTopology my-topology
Alexei Osipov