Skip to content

Instantly share code, notes, and snippets.

@maikelsperandio
Created October 8, 2013 17:49
Show Gist options
  • Save maikelsperandio/6888612 to your computer and use it in GitHub Desktop.
Save maikelsperandio/6888612 to your computer and use it in GitHub Desktop.
maven build plugins
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${compiler.version}</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/RunAllTests.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment