0e1766065d5f586a9bc53c14006d5bb5fff0aaa5
[mdsal.git] / binding / mdsal-binding-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-binding</artifactId>
7     <version>0.9.4-SNAPSHOT</version>
8   </parent>
9   <artifactId>mdsal-binding-api</artifactId>
10   <version>2.1.4-SNAPSHOT</version>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>com.google.guava</groupId>
16       <artifactId>guava</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.mdsal</groupId>
20       <artifactId>mdsal-common-api</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.mdsal.model</groupId>
24       <artifactId>general-entity</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.yangtools</groupId>
28       <artifactId>concepts</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.mdsal</groupId>
32       <artifactId>yang-binding</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>yang-common</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>yang-data-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.osgi</groupId>
44       <artifactId>org.osgi.core</artifactId>
45       <scope>provided</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.apache.commons</groupId>
49       <artifactId>commons-lang3</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.mockito</groupId>
54       <artifactId>mockito-all</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62   </dependencies>
63   <scm>
64     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
65     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
66     <tag>HEAD</tag>
67     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
68   </scm>
69
70   <!--
71       Maven Site Configuration
72
73       The following configuration is necessary for maven-site-plugin to
74       correctly identify the correct deployment path for OpenDaylight Maven
75       sites.
76   -->
77   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
78
79   <distributionManagement>
80     <site>
81       <id>opendaylight-site</id>
82       <url>${nexus.site.url}/${project.artifactId}/</url>
83     </site>
84   </distributionManagement>
85
86 </project>