Skip to content

Instantly share code, notes, and snippets.

@ansrivas
Created November 21, 2015 00:57
Show Gist options
  • Select an option

  • Save ansrivas/3f92b4a43e4e0794e002 to your computer and use it in GitHub Desktop.

Select an option

Save ansrivas/3f92b4a43e4e0794e002 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.example.Main</mainClass>
<arguments>
<argument>foo</argument>
<argument>bar</argument>
</arguments>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment