Skip to content

Instantly share code, notes, and snippets.

@rschumm
Created October 23, 2012 14:29
Show Gist options
  • Save rschumm/3939066 to your computer and use it in GitHub Desktop.
Save rschumm/3939066 to your computer and use it in GitHub Desktop.
maven: erstelle von den Testfällen auch ein jar
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment