0168f84f5d2e705b560df9a5319bcb053b4c0543
[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.5</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.mdsal</groupId>
21     <artifactId>mdsal-binding-test-utils</artifactId>
22     <version>6.0.0-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-generator-impl</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-binding-dom-adapter</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal</groupId>
71             <artifactId>mdsal-binding-dom-adapter</artifactId>
72             <type>test-jar</type>
73         </dependency>
74         <!-- The following are dependencies which are listed
75              as scope test in mdsal-binding-dom-adapter; we
76              wanted most of them as scope compile here...      -->
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-dom-broker</artifactId>
80         </dependency>
81
82         <!-- The following, contrary to the above, ARE <scope>test,
83              because they are only required by the test utilities
84              self test code in src/test, but not (necessarily)
85              by a downstream consumer of the test utilities.   -->
86         <dependency>
87             <groupId>org.opendaylight.mdsal</groupId>
88             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.mdsal</groupId>
93             <artifactId>mdsal-binding-test-model</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>com.google.truth</groupId>
98             <artifactId>truth</artifactId>
99             <scope>test</scope>
100         </dependency>
101     </dependencies>
102 </project>