I have a Maven project with one class with main method and I'd like to create one big executable jar with Maven. Here's the configuration:
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<archive>
<manifest>
<mainClass>com.kawaiisoft.Miku</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
The class is specified in mainClass element. Next I do:
mvn assembly:single
and Maven creates target/miku-cli-1.0.0-SNAPSHOT-jar-with-dependencies.jar. Great so far. Except the main class is not included in the jar while all dependencies are there. What am I doing wrong?
mvn clean package assembly:single? – user944849 Apr 21 '12 at 17:40