Bumping versions by 0.1.0 for next dev cycle
[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.7.0-SNAPSHOT</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.mdsal</groupId>
20     <artifactId>features-mdsal</artifactId>
21     <version>2.1.0-SNAPSHOT</version>
22     <packaging>jar</packaging>
23
24     <properties>
25         <yangtools.version>0.9.0-SNAPSHOT</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.yangtools</groupId>
51             <artifactId>features-yangtools</artifactId>
52             <classifier>features</classifier>
53             <type>xml</type>
54         </dependency>
55
56         <dependency>
57               <groupId>${project.groupId}</groupId>
58               <artifactId>mdsal-common-api</artifactId>
59           </dependency>
60
61           <dependency>
62               <groupId>${project.groupId}</groupId>
63               <artifactId>mdsal-dom-api</artifactId>
64           </dependency>
65           <dependency>
66               <groupId>${project.groupId}</groupId>
67               <artifactId>mdsal-dom-spi</artifactId>
68           </dependency>
69           <dependency>
70               <groupId>${project.groupId}</groupId>
71               <artifactId>mdsal-dom-broker</artifactId>
72           </dependency>
73           <dependency>
74               <groupId>${project.groupId}</groupId>
75               <artifactId>mdsal-dom-inmemory-datastore</artifactId>
76           </dependency>
77
78             <!-- Binding MD-SAL & Java Binding -->
79             <dependency>
80                 <groupId>${project.groupId}</groupId>
81                 <artifactId>maven-sal-api-gen-plugin</artifactId>
82             </dependency>
83              <dependency>
84                 <groupId>${project.groupId}</groupId>
85                 <artifactId>mdsal-binding-generator-api</artifactId>
86             </dependency>
87             <dependency>
88                 <groupId>${project.groupId}</groupId>
89                 <artifactId>mdsal-binding-generator-util</artifactId>
90             </dependency>
91             <dependency>
92                 <groupId>${project.groupId}</groupId>
93                 <artifactId>mdsal-binding-generator-impl</artifactId>
94             </dependency>
95             <dependency>
96                 <groupId>${project.groupId}</groupId>
97                 <artifactId>mdsal-binding-java-api-generator</artifactId>
98             </dependency>
99             <dependency>
100                 <groupId>${project.groupId}</groupId>
101                 <artifactId>yang-binding</artifactId>
102             </dependency>
103             <dependency>
104                 <groupId>${project.groupId}</groupId>
105                 <artifactId>mdsal-binding-dom-codec</artifactId>
106             </dependency>
107
108             <dependency>
109                 <groupId>${project.groupId}</groupId>
110                 <artifactId>mdsal-binding-api</artifactId>
111             </dependency>
112             <dependency>
113                 <groupId>${project.groupId}</groupId>
114                 <artifactId>mdsal-binding-dom-adapter</artifactId>
115             </dependency>
116             <dependency>
117                 <groupId>${project.groupId}</groupId>
118                 <artifactId>mdsal-binding-util</artifactId>
119             </dependency>
120             <dependency>
121                 <groupId>${project.groupId}.model</groupId>
122                 <artifactId>yang-ext</artifactId>
123             </dependency>
124             <dependency>
125                 <groupId>${project.groupId}.model</groupId>
126                 <artifactId>general-entity</artifactId>
127             </dependency>
128     </dependencies>
129 </project>