Bump versions by x.(y+1).z
[lispflowmapping.git] / commons / unittest_tools / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.lispflowmapping</groupId>
7     <artifactId>lispflowmapping-commons</artifactId>
8     <version>1.14.0-SNAPSHOT</version>
9     <relativePath>../parent</relativePath>
10   </parent>
11
12   <artifactId>common.unittest.tools</artifactId>
13   <!-- <name> formatting is used by autorelease to parse and notify projects on
14        build failure. Please do not modify this unless you have a good reason. -->
15   <name>ODL :: lispflowmapping :: ${project.artifactId}</name>
16
17   <properties>
18     <odlparent.checkstyle.enforce>false</odlparent.checkstyle.enforce>
19     <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
20   </properties>
21
22   <dependencies>
23     <dependency>
24       <groupId>junit</groupId>
25       <artifactId>junit</artifactId>
26       <scope>compile</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.hamcrest</groupId>
30       <artifactId>hamcrest-core</artifactId>
31       <version>1.3</version>
32       <scope>compile</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.jmock</groupId>
36       <artifactId>jmock</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.jmock</groupId>
40       <artifactId>jmock-legacy</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.slf4j</groupId>
44       <artifactId>slf4j-api</artifactId>
45     </dependency>
46   </dependencies>
47 </project>