To get rid of this warning you need to change your pom.xml
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.3.2</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <killAfter>-1</killAfter> <mainClass>foodfinder.client.Launcher</mainClass> </configuration> </plugin>
edit This answer is no longer valid for newer versions (> 1.3.2) of exec-maven-plugin
.
For downstream voters, please see the chart.
Jul 2014 - release of plugin version 1.3.2 Nov 2014 - posting this answer Mar 2015 - release of plugin version 1.4.0
source share