26ad7d6b64e399c93659ea8d54b8f5d224903954
[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.3-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   </dependencies>
42
43   <scm>
44     <connection>scm:git:http://git.opendaylight.org/gerrit/mdsal.git</connection>
45     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/mdsal.git</developerConnection>
46     <tag>HEAD</tag>
47     <url>https://wiki.opendaylight.org/view/MD-SAL:Main</url>
48   </scm>
49
50   <!--
51       Maven Site Configuration
52
53       The following configuration is necessary for maven-site-plugin to
54       correctly identify the correct deployment path for OpenDaylight Maven
55       sites.
56   -->
57   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
58
59   <distributionManagement>
60     <site>
61       <id>opendaylight-site</id>
62       <url>${nexus.site.url}/${project.artifactId}/</url>
63     </site>
64   </distributionManagement>
65
66 </project>