Release mdsal
[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>10.0.2</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-binding-test-utils</artifactId>
22     <version>9.0.3</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
47         <dependency>
48             <groupId>io.github.java-diff-utils</groupId>
49             <artifactId>java-diff-utils</artifactId>
50             <version>4.11</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-spi</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-binding-generator</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-binding-runtime-spi</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal</groupId>
66             <artifactId>mdsal-binding-dom-adapter</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-binding-dom-adapter</artifactId>
71             <type>test-jar</type>
72             <!-- We are building on top of abstract test classes -->
73             <scope>compile</scope>
74         </dependency>
75         <!-- For testing purposes we want to bring in also implementation
76              artifacts -->
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-dom-broker</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
84         </dependency>
85
86         <dependency>
87             <groupId>org.opendaylight.mdsal</groupId>
88             <artifactId>mdsal-binding-test-model</artifactId>
89         </dependency>
90     </dependencies>
91 </project>