Bump versions to 8.0.15-SNAPSHOT
[mdsal.git] / binding / mdsal-binding-test-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Red Hat, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>odlparent</artifactId>
16         <version>9.0.14</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-binding-test-utils</artifactId>
22     <version>8.0.15-SNAPSHOT</version>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.mdsal</groupId>
28                 <artifactId>mdsal-artifacts</artifactId>
29                 <version>${project.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <dependencies>
37         <!-- NB: All of these are, intentionally, NOT <scope>test</scope>,
38              because downstream consumer projects of the test utilities
39              will necessarily also require these dependencies in order
40              to run tests such as the AssertDataObjectsTest. -->
41         <dependency>
42             <groupId>junit</groupId>
43             <artifactId>junit</artifactId>
44             <scope>compile</scope>
45         </dependency>
46         <dependency>
47             <groupId>ch.vorburger</groupId>
48             <artifactId>xtendbeans</artifactId>
49             <scope>compile</scope>
50             <version>1.3.2</version>
51         </dependency>
52
53         <dependency>
54             <groupId>io.github.java-diff-utils</groupId>
55             <artifactId>java-diff-utils</artifactId>
56             <version>4.11</version>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-binding-spi</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-binding-generator</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding-runtime-spi</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>mdsal-binding-dom-adapter</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>mdsal-binding-dom-adapter</artifactId>
77             <type>test-jar</type>
78             <!-- We are building on top of abstract test classes -->
79             <scope>compile</scope>
80         </dependency>
81         <!-- For testing purposes we want to bring in also implementation
82              artifacts -->
83         <dependency>
84             <groupId>org.opendaylight.mdsal</groupId>
85             <artifactId>mdsal-dom-broker</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal</groupId>
89             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
90         </dependency>
91
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>mdsal-binding-test-model</artifactId>
95         </dependency>
96     </dependencies>
97 </project>