Commit 498295cc authored by Johannes Schindelin's avatar Johannes Schindelin

Tell Maven's exec:java to execute our main class by default

It is quite convenient to be able to tell Maven to execute the plugin
(thanks to the main() method) by calling

    mvn package exec:java
Signed-off-by: 's avatarJohannes Schindelin <johannes.schindelin@gmx.de>
parent 89e2d895
......@@ -26,6 +26,25 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>Process_Pixels</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<id>dscho</id>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment