Skip to content

Instantly share code, notes, and snippets.

@matthewmccullough
Forked from mkristian/gist:299995
Created February 12, 2010 06:18
Show Gist options
  • Save matthewmccullough/302357 to your computer and use it in GitHub Desktop.
Save matthewmccullough/302357 to your computer and use it in GitHub Desktop.
Using the Shitty Maven plugin
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>shitty</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>shitty-maven-plugin</artifactId>
<version>1.0-alpha-4-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment