ec37da7d4c9806e25044e8f55ae4627af905c5a7
[mdsal.git] / entityownership / mdsal-eos-binding-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.mdsal</groupId>
13     <artifactId>mdsal-eos</artifactId>
14     <version>2.1.3-SNAPSHOT</version>
15   </parent>
16
17   <artifactId>mdsal-eos-binding-adapter</artifactId>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.mdsal</groupId>
27       <artifactId>mdsal-eos-dom-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.mdsal</groupId>
31       <artifactId>mdsal-binding-dom-adapter</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal</groupId>
35       <artifactId>mdsal-eos-binding-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal.model</groupId>
39       <artifactId>general-entity</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>concepts</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.mdsal</groupId>
47       <artifactId>yang-binding</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>yang-common</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.osgi</groupId>
55       <artifactId>org.osgi.core</artifactId>
56       <scope>provided</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.apache.commons</groupId>
60       <artifactId>commons-lang3</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-all</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>junit</groupId>
70       <artifactId>junit</artifactId>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74   <scm>
75     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
76     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
77     <tag>HEAD</tag>
78     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
79   </scm>
80
81   <!--
82       Maven Site Configuration
83
84       The following configuration is necessary for maven-site-plugin to
85       correctly identify the correct deployment path for OpenDaylight Maven
86       sites.
87   -->
88   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
89
90   <distributionManagement>
91     <site>
92       <id>opendaylight-site</id>
93       <url>${nexus.site.url}/${project.artifactId}/</url>
94     </site>
95   </distributionManagement>
96
97 </project>