539e7c071d279a2794aa50fd2bab423137a39deb
[controller.git] / opendaylight / md-sal / sal-dom-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.odlparent</groupId>
6     <artifactId>bundle-parent</artifactId>
7     <version>2.0.1</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>sal-core-api</artifactId>
13   <version>1.6.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <dependencyManagement>
17     <dependencies>
18       <dependency>
19         <groupId>org.opendaylight.yangtools</groupId>
20         <artifactId>yangtools-artifacts</artifactId>
21         <version>1.2.0-SNAPSHOT</version>
22         <type>pom</type>
23         <scope>import</scope>
24       </dependency>
25       <dependency>
26         <groupId>org.opendaylight.mdsal</groupId>
27         <artifactId>mdsal-artifacts</artifactId>
28         <version>2.3.0-SNAPSHOT</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>mdsal-artifacts</artifactId>
35         <version>1.6.0-SNAPSHOT</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39     </dependencies>
40   </dependencyManagement>
41
42   <dependencies>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-common-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.yangtools</groupId>
49       <artifactId>yang-data-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>yang-model-api</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.osgi</groupId>
57       <artifactId>org.osgi.core</artifactId>
58     </dependency>
59
60     <dependency>
61       <groupId>junit</groupId>
62       <artifactId>junit</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.controller</groupId>
66       <artifactId>sal-test-model</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.mdsal</groupId>
70       <artifactId>mdsal-dom-api</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>yang-data-impl</artifactId>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78
79   <scm>
80     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
82     <tag>HEAD</tag>
83     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
84   </scm>
85
86   <!--
87       Maven Site Configuration
88
89       The following configuration is necessary for maven-site-plugin to
90       correctly identify the correct deployment path for OpenDaylight Maven
91       sites.
92   -->
93   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
94
95   <distributionManagement>
96     <site>
97       <id>opendaylight-site</id>
98       <url>${nexus.site.url}/${project.artifactId}/</url>
99     </site>
100   </distributionManagement>
101 </project>