Skip to content

Instantly share code, notes, and snippets.

@adrianlee
Created November 2, 2011 22:56
Show Gist options
  • Save adrianlee/1335212 to your computer and use it in GitHub Desktop.
Save adrianlee/1335212 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>jake</executable>
<workingDirectory></workingDirectory>
<arguments>
<argument>test</argument> <!--<argument>${project.build.directory}/${project.build.finalName}.jar</argument>-->
</arguments>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment