1bff7f03f409ebecc8081e65d3f0e68baff8615f
[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.mdsal</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>14.0.0-SNAPSHOT</version>
17         <relativePath>../../bundle-parent</relativePath>
18     </parent>
19
20     <artifactId>mdsal-binding-test-utils</artifactId>
21
22     <properties>
23         <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
24         <doclint>all,-missing</doclint>
25     </properties>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.opendaylight.mdsal</groupId>
31                 <artifactId>mdsal-artifacts</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <!-- NB: All of these are, intentionally, NOT <scope>test</scope>,
41              because downstream consumer projects of the test utilities
42              will necessarily also require these dependencies in order
43              to run tests such as the AssertDataObjectsTest. -->
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47             <scope>compile</scope>
48         </dependency>
49
50         <dependency>
51             <groupId>io.github.java-diff-utils</groupId>
52             <artifactId>java-diff-utils</artifactId>
53             <version>4.12</version>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57             <artifactId>mdsal-binding-spi</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.mdsal</groupId>
61             <artifactId>mdsal-binding-dom-adapter</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding-dom-adapter</artifactId>
66             <type>test-jar</type>
67             <!-- We are building on top of abstract test classes -->
68             <scope>compile</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>binding-generator</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>binding-runtime-spi</artifactId>
77         </dependency>
78         <!-- For testing purposes we want to bring in also implementation
79              artifacts -->
80         <dependency>
81             <groupId>org.opendaylight.mdsal</groupId>
82             <artifactId>mdsal-dom-broker</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.yangtools</groupId>
90             <artifactId>binding-data-codec-dynamic</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>org.opendaylight.mdsal</groupId>
95             <artifactId>mdsal-binding-test-model</artifactId>
96         </dependency>
97     </dependencies>
98 </project>