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