11dd745603ed01507225a515afece2f78dde38aa
[mdsal.git] / common / features / features-mdsal / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>features-parent</artifactId>
15         <version>1.9.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>features-mdsal</artifactId>
21     <version>2.3.0-SNAPSHOT</version>
22     <packaging>jar</packaging>
23
24     <properties>
25         <odlparent.version>1.9.0-SNAPSHOT</odlparent.version>
26         <yangtools.version>1.2.0-SNAPSHOT</yangtools.version>
27     </properties>
28
29     <dependencyManagement>
30         <dependencies>
31             <dependency>
32                 <groupId>org.opendaylight.odlparent</groupId>
33                 <artifactId>odlparent-artifacts</artifactId>
34                 <version>${odlparent.version}</version>
35                 <scope>import</scope>
36                 <type>pom</type>
37             </dependency>
38             <dependency>
39                 <groupId>org.opendaylight.yangtools</groupId>
40                 <artifactId>yangtools-artifacts</artifactId>
41                 <version>${yangtools.version}</version>
42                 <scope>import</scope>
43                 <type>pom</type>
44             </dependency>
45             <dependency>
46                 <groupId>org.opendaylight.mdsal</groupId>
47                 <!-- mdsal-parent has third-party dependency definitions -->
48                 <artifactId>mdsal-parent</artifactId>
49                 <version>${project.version}</version>
50                 <scope>import</scope>
51                 <type>pom</type>
52             </dependency>
53         </dependencies>
54     </dependencyManagement>
55
56     <dependencies>
57
58         <dependency>
59             <groupId>org.opendaylight.odlparent</groupId>
60             <artifactId>features-odlparent</artifactId>
61             <classifier>features</classifier>
62             <type>xml</type>
63         </dependency>
64
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>features-yangtools</artifactId>
68             <classifier>features</classifier>
69             <type>xml</type>
70         </dependency>
71
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>mdsal-common-api</artifactId>
75         </dependency>
76
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79             <artifactId>mdsal-dom-api</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>mdsal-dom-spi</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>mdsal-dom-broker</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>mdsal-eos-common-api</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>mdsal-eos-common-spi</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>${project.groupId}</groupId>
103             <artifactId>mdsal-eos-dom-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>mdsal-eos-binding-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>mdsal-eos-binding-adapter</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>${project.groupId}</groupId>
115             <artifactId>mdsal-singleton-common-api</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}</groupId>
119             <artifactId>mdsal-singleton-dom-impl</artifactId>
120         </dependency>
121
122         <!-- Binding MD-SAL & Java Binding -->
123         <dependency>
124             <groupId>${project.groupId}</groupId>
125             <artifactId>mdsal-binding-generator-api</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>${project.groupId}</groupId>
129             <artifactId>mdsal-binding-generator-util</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>${project.groupId}</groupId>
133             <artifactId>mdsal-binding-generator-impl</artifactId>
134         </dependency>
135         <dependency>
136             <groupId>${project.groupId}</groupId>
137             <artifactId>yang-binding</artifactId>
138         </dependency>
139         <dependency>
140             <groupId>${project.groupId}</groupId>
141             <artifactId>mdsal-binding-dom-codec</artifactId>
142         </dependency>
143
144         <dependency>
145             <groupId>${project.groupId}</groupId>
146             <artifactId>mdsal-binding-api</artifactId>
147         </dependency>
148         <dependency>
149             <groupId>${project.groupId}</groupId>
150             <artifactId>mdsal-binding-dom-adapter</artifactId>
151         </dependency>
152         <dependency>
153             <groupId>${project.groupId}.model</groupId>
154             <artifactId>yang-ext</artifactId>
155         </dependency>
156         <dependency>
157             <groupId>${project.groupId}.model</groupId>
158             <artifactId>general-entity</artifactId>
159         </dependency>
160     </dependencies>
161
162   <!--
163       Maven Site Configuration
164
165       The following configuration is necessary for maven-site-plugin to
166       correctly identify the correct deployment path for OpenDaylight Maven
167       sites.
168   -->
169   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
170
171   <distributionManagement>
172     <site>
173       <id>opendaylight-site</id>
174       <url>${nexus.site.url}/${project.artifactId}/</url>
175     </site>
176   </distributionManagement>
177
178 </project>