BUG-4219: clean up features.xml
[mdsal.git] / common / features / 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.8.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>features-mdsal</artifactId>
21     <version>2.2.0-SNAPSHOT</version>
22     <packaging>jar</packaging>
23
24     <properties>
25         <odlparent.version>1.8.0-SNAPSHOT</odlparent.version>
26         <yangtools.version>1.1.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
73         <dependency>
74             <groupId>org.eclipse.xtext</groupId>
75             <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
76         </dependency>
77
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>mdsal-common-api</artifactId>
81         </dependency>
82
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>mdsal-dom-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>mdsal-dom-spi</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>mdsal-dom-broker</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>mdsal-eos-common-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>mdsal-eos-common-spi</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>mdsal-eos-dom-api</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>${project.groupId}</groupId>
113             <artifactId>mdsal-eos-binding-api</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>${project.groupId}</groupId>
117             <artifactId>mdsal-eos-binding-adapter</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>${project.groupId}</groupId>
121             <artifactId>mdsal-singleton-common-api</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>${project.groupId}</groupId>
125             <artifactId>mdsal-singleton-dom-impl</artifactId>
126         </dependency>
127
128         <!-- Binding MD-SAL & Java Binding -->
129         <dependency>
130             <groupId>${project.groupId}</groupId>
131             <artifactId>mdsal-binding-generator-api</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>${project.groupId}</groupId>
135             <artifactId>mdsal-binding-generator-util</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>${project.groupId}</groupId>
139             <artifactId>mdsal-binding-generator-impl</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>${project.groupId}</groupId>
143             <artifactId>yang-binding</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>${project.groupId}</groupId>
147             <artifactId>mdsal-binding-dom-codec</artifactId>
148         </dependency>
149
150         <dependency>
151             <groupId>${project.groupId}</groupId>
152             <artifactId>mdsal-binding-api</artifactId>
153         </dependency>
154         <dependency>
155             <groupId>${project.groupId}</groupId>
156             <artifactId>mdsal-binding-dom-adapter</artifactId>
157         </dependency>
158         <dependency>
159             <groupId>${project.groupId}.model</groupId>
160             <artifactId>yang-ext</artifactId>
161         </dependency>
162         <dependency>
163             <groupId>${project.groupId}.model</groupId>
164             <artifactId>general-entity</artifactId>
165         </dependency>
166     </dependencies>
167
168   <!--
169       Maven Site Configuration
170
171       The following configuration is necessary for maven-site-plugin to
172       correctly identify the correct deployment path for OpenDaylight Maven
173       sites.
174   -->
175   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
176
177   <distributionManagement>
178     <site>
179       <id>opendaylight-site</id>
180       <url>${nexus.site.url}/${project.artifactId}/</url>
181     </site>
182   </distributionManagement>
183
184 </project>