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