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