Bump versions to 5.0.3-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>6.0.0</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-binding-test-utils</artifactId>
22     <version>5.0.3-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.1</version>
51         </dependency>
52         <dependency>
53             <groupId>io.github.java-diff-utils</groupId>
54             <artifactId>java-diff-utils</artifactId>
55             <version>4.0</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal</groupId>
59             <artifactId>mdsal-binding-spi</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal</groupId>
63             <artifactId>mdsal-binding-dom-adapter</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-binding-dom-adapter</artifactId>
68             <type>test-jar</type>
69         </dependency>
70         <!-- The following are dependencies which are listed
71              as scope test in mdsal-binding-dom-adapter; we
72              wanted most of them as scope compile here...      -->
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>mdsal-dom-broker</artifactId>
76         </dependency>
77
78         <!-- The following, contrary to the above, ARE <scope>test,
79              because they are only required by the test utilities
80              self test code in src/test, but not (necessarily)
81              by a downstream consumer of the test utilities.   -->
82         <dependency>
83             <groupId>org.opendaylight.mdsal</groupId>
84             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal</groupId>
89             <artifactId>mdsal-binding-test-model</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>com.google.truth</groupId>
94             <artifactId>truth</artifactId>
95             <scope>test</scope>
96         </dependency>
97     </dependencies>
98 </project>