Release Beryllium
[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.6.0-Beryllium</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>features-mdsal</artifactId>
21     <version>2.0.0-Beryllium</version>
22     <packaging>jar</packaging>
23
24     <properties>
25         <yangtools.version>0.8.0-Beryllium</yangtools.version>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>org.opendaylight.yangtools</groupId>
32                 <artifactId>yangtools-artifacts</artifactId>
33                 <version>${yangtools.version}</version>
34                 <scope>import</scope>
35                 <type>pom</type>
36             </dependency>
37             <dependency>
38                 <groupId>org.opendaylight.mdsal</groupId>
39                 <artifactId>mdsal-artifacts</artifactId>
40                 <version>${project.version}</version>
41                 <scope>import</scope>
42                 <type>pom</type>
43             </dependency>
44         </dependencies>
45     </dependencyManagement>
46
47     <dependencies>
48
49         <dependency>
50             <groupId>org.opendaylight.odlparent</groupId>
51             <artifactId>features-odlparent</artifactId>
52             <classifier>features</classifier>
53             <type>xml</type>
54         </dependency>
55
56         <dependency>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>features-yangtools</artifactId>
59             <classifier>features</classifier>
60             <type>xml</type>
61         </dependency>
62
63         <dependency>
64               <groupId>${project.groupId}</groupId>
65               <artifactId>mdsal-common-api</artifactId>
66           </dependency>
67
68           <dependency>
69               <groupId>${project.groupId}</groupId>
70               <artifactId>mdsal-dom-api</artifactId>
71           </dependency>
72           <dependency>
73               <groupId>${project.groupId}</groupId>
74               <artifactId>mdsal-dom-spi</artifactId>
75           </dependency>
76           <dependency>
77               <groupId>${project.groupId}</groupId>
78               <artifactId>mdsal-dom-broker</artifactId>
79           </dependency>
80           <dependency>
81               <groupId>${project.groupId}</groupId>
82               <artifactId>mdsal-dom-inmemory-datastore</artifactId>
83           </dependency>
84
85             <!-- Binding MD-SAL & Java Binding -->
86             <dependency>
87                 <groupId>${project.groupId}</groupId>
88                 <artifactId>maven-sal-api-gen-plugin</artifactId>
89             </dependency>
90              <dependency>
91                 <groupId>${project.groupId}</groupId>
92                 <artifactId>mdsal-binding-generator-api</artifactId>
93             </dependency>
94             <dependency>
95                 <groupId>${project.groupId}</groupId>
96                 <artifactId>mdsal-binding-generator-util</artifactId>
97             </dependency>
98             <dependency>
99                 <groupId>${project.groupId}</groupId>
100                 <artifactId>mdsal-binding-generator-impl</artifactId>
101             </dependency>
102             <dependency>
103                 <groupId>${project.groupId}</groupId>
104                 <artifactId>mdsal-binding-java-api-generator</artifactId>
105             </dependency>
106             <dependency>
107                 <groupId>${project.groupId}</groupId>
108                 <artifactId>yang-binding</artifactId>
109             </dependency>
110             <dependency>
111                 <groupId>${project.groupId}</groupId>
112                 <artifactId>mdsal-binding-dom-codec</artifactId>
113             </dependency>
114
115             <dependency>
116                 <groupId>${project.groupId}</groupId>
117                 <artifactId>mdsal-binding-api</artifactId>
118             </dependency>
119             <dependency>
120                 <groupId>${project.groupId}</groupId>
121                 <artifactId>mdsal-binding-dom-adapter</artifactId>
122             </dependency>
123             <dependency>
124                 <groupId>${project.groupId}</groupId>
125                 <artifactId>mdsal-binding-util</artifactId>
126             </dependency>
127             <dependency>
128                 <groupId>${project.groupId}.model</groupId>
129                 <artifactId>yang-ext</artifactId>
130             </dependency>
131             <dependency>
132                 <groupId>${project.groupId}.model</groupId>
133                 <artifactId>general-entity</artifactId>
134             </dependency>
135     </dependencies>
136
137   <!--
138       Maven Site Configuration
139
140       The following configuration is necessary for maven-site-plugin to
141       correctly identify the correct deployment path for OpenDaylight Maven
142       sites.
143   -->
144   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
145
146   <distributionManagement>
147     <site>
148       <id>opendaylight-site</id>
149       <url>${nexus.site.url}/${project.artifactId}/</url>
150     </site>
151   </distributionManagement>
152
153 </project>