Skip to content

Instantly share code, notes, and snippets.

@douglasmartins7
Created April 11, 2017 19:20
Show Gist options
  • Save douglasmartins7/61f1881c196969666ed071d513443776 to your computer and use it in GitHub Desktop.
Save douglasmartins7/61f1881c196969666ed071d513443776 to your computer and use it in GitHub Desktop.
Build Maven
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<compileVersion>1.8</compileVersion>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<!--<suiteXmlFiles>
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
</suiteXmlFiles>
-->
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment