5bd6892635abf23b89a8f32efe37b36cb4f0918f
[mdsal.git] / entityownership / mdsal-eos-dom-api / 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-dom-api</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>org.opendaylight.yangtools</groupId>
27       <artifactId>yang-data-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>yang-model-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.osgi</groupId>
35       <artifactId>org.osgi.core</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.yangtools</groupId>
43       <artifactId>yang-data-impl</artifactId>
44       <scope>test</scope>
45     </dependency>
46   </dependencies>
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <extensions>true</extensions>
53       </plugin>
54     </plugins>
55   </build>
56   <scm>
57     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
58     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
59     <tag>HEAD</tag>
60     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
61   </scm>
62
63   <!--
64       Maven Site Configuration
65
66       The following configuration is necessary for maven-site-plugin to
67       correctly identify the correct deployment path for OpenDaylight Maven
68       sites.
69   -->
70   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
71
72   <distributionManagement>
73     <site>
74       <id>opendaylight-site</id>
75       <url>${nexus.site.url}/${project.artifactId}/</url>
76     </site>
77   </distributionManagement>
78
79 </project>