Skip to content

Instantly share code, notes, and snippets.

@request-timeout
Created October 22, 2014 16:35
Show Gist options
  • Save request-timeout/12dc298490686641611d to your computer and use it in GitHub Desktop.
Save request-timeout/12dc298490686641611d to your computer and use it in GitHub Desktop.
maven exec plugin config
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.prodigious.helios.ModelExportMain</mainClass>
</configuration>
</plugin>
</plugins>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment