pom.xml: switch parent to kemitix-parent

Need to specify versions for junit and mockito-core ourselves now.
This commit is contained in:
Paul Campbell 2016-01-25 12:11:21 +00:00
parent c1acc0480b
commit ebba0760c4

View file

@ -30,8 +30,8 @@
<parent> <parent>
<groupId>net.kemitix</groupId> <groupId>net.kemitix</groupId>
<artifactId>kemitix-spring-parent</artifactId> <artifactId>kemitix-parent</artifactId>
<version>1.2.1</version> <version>0.6.1</version>
</parent> </parent>
<dependencies> <dependencies>
@ -48,13 +48,14 @@
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope> <scope>test</scope>
<type>jar</type>
</dependency> </dependency>
</dependencies> </dependencies>