I'm new to using storm with python , is there any wrong in my pom ?
Is ${basedir}/multilang should write like that or i should replace
${basedir} with something else ? and ${storm.topology} should i write the
name of the class or leave it as it is ?
<dependencies>
<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-core</artifactId>
<version>0.9.6</version>
<!-- keep storm out of the jar-with-dependencies -->
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<!-- Where the Python bits are kept -->
<directory>${basedir}/multilang</directory>
</resource>
</resources>
<plugins>
<configuration>
<executable>java</executable>
<includeProjectDependencies>true</includeProjectDependencies>
<includePluginDependencies>true</includePluginDependencies>
<classpathScope>compile</classpathScope>
<mainClass>${storm.topology}</mainClass>
</configuration>
Thanks in advance