Skip to content

Instantly share code, notes, and snippets.

@solanoize
Created August 29, 2025 14:59
Show Gist options
  • Save solanoize/9c8b73e02c4954d886816b5b1ddbdb17 to your computer and use it in GitHub Desktop.
Save solanoize/9c8b73e02c4954d886816b5b1ddbdb17 to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<mainClass>com.sqabatch24.javadasar.App</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.sqabatch24.javadasar.App</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
@solanoize
Copy link
Author

for running:

mvn compile exec:java

or:

mvn compile exec:java -Dexec.mainClass="com.example.learn.App"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment