Skip to content

Instantly share code, notes, and snippets.

@rifttech
Created February 17, 2018 07:40
Show Gist options
  • Select an option

  • Save rifttech/a10b2f45cda8730b85c8a86004b9de32 to your computer and use it in GitHub Desktop.

Select an option

Save rifttech/a10b2f45cda8730b85c8a86004b9de32 to your computer and use it in GitHub Desktop.
parent pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId></groupId>
<artifactId></artifactId>
<version></version>
<packaging>pom</packaging>
<name></name>
<url></url>
<modules
</modules>
<properties>
<!-- Compiler -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<v.junit>4.12</v.junit>
<v.mockito>1.10.19</v.mockito>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${v.junit}</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${v.mockito}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment