maven: Plugin for building executable jar manifest
July 25th, 2010 by jeremychone<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.example.MyStart</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
Source: Maven Guide > Guide to Working with Manifests