Add better messages to getTypeWithSchema()
[mdsal.git] / singleton-service / mdsal-singleton-dom-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.mdsal</groupId>
6     <artifactId>singleton-service</artifactId>
7     <version>2.1.0-SNAPSHOT</version>
8   </parent>
9
10   <artifactId>mdsal-singleton-dom-api</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>org.opendaylight.mdsal</groupId>
16       <artifactId>mdsal-eos-dom-api</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.mdsal</groupId>
20       <artifactId>mdsal-singleton-common-api</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>com.google.guava</groupId>
24       <artifactId>guava</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>concepts</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>util</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>yang-common</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>junit</groupId>
40       <artifactId>junit</artifactId>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.yangtools</groupId>
45       <artifactId>mockito-configuration</artifactId>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49
50   <scm>
51     <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
52     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
53     <tag>HEAD</tag>
54     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
55   </scm>
56
57   <!--
58       Maven Site Configuration
59
60       The following configuration is necessary for maven-site-plugin to
61       correctly identify the correct deployment path for OpenDaylight Maven
62       sites.
63   -->
64   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
65
66   <distributionManagement>
67     <site>
68       <id>opendaylight-site</id>
69       <url>${nexus.site.url}/${project.artifactId}/</url>
70     </site>
71   </distributionManagement>
72
73 </project>