This is an automated email from the ASF dual-hosted git repository. srdo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/storm.git
commit da8c4539e7c697b2ca706a26a0a6092930dc7ae0 Author: Stig Rohde Døssing <[email protected]> AuthorDate: Wed Feb 27 20:38:52 2019 +0100 STORM-3347: Don't use maven-exec-plugin in storm-starter --- examples/storm-starter/pom.xml | 33 +++++++-------------------------- 1 file changed, 7 insertions(+), 26 deletions(-) diff --git a/examples/storm-starter/pom.xml b/examples/storm-starter/pom.xml index 2841e93..e147497 100644 --- a/examples/storm-starter/pom.xml +++ b/examples/storm-starter/pom.xml @@ -225,33 +225,14 @@ <excludedGroups>none</excludedGroups> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>exec</goal> - </goals> - </execution> - </executions> - <configuration> - <executable>java</executable> - <includeProjectDependencies>true</includeProjectDependencies> - <includePluginDependencies>false</includePluginDependencies> - <classpathScope>compile</classpathScope> - <!-- allows you to specify which topology class to run by specifying -Dstorm.topology= on the command line --> - <mainClass>${storm.topology}</mainClass> - </configuration> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <!--Note - the version would be inherited--> + <configuration> + <maxAllowedViolations>263</maxAllowedViolations> + </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <!--Note - the version would be inherited--> - <configuration> - <maxAllowedViolations>263</maxAllowedViolations> - </configuration> - </plugin> </plugins> </build> </project>
