Merge "Added .gitreview"
[mdsal.git] / common / artifacts / 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
12     <modelVersion>4.0.0</modelVersion>
13     <groupId>org.opendaylight.mdsal</groupId>
14     <artifactId>mdsal-artifacts</artifactId>
15     <version>2.0.0-SNAPSHOT</version>
16     <packaging>pom</packaging>
17
18     <dependencyManagement>
19         <dependencies>
20
21           <dependency>
22             <groupId>org.opendaylight.mdsal</groupId>
23             <artifactId>features-mdsal</artifactId>
24             <classifier>features</classifier>
25             <version>${project.version}</version>
26             <type>xml</type>
27           </dependency>
28
29           <!-- Common APIs for Binding and DOM -->
30           <dependency>
31               <groupId>org.opendaylight.mdsal</groupId>
32               <artifactId>mdsal-common-api</artifactId>
33               <version>${project.version}</version>
34           </dependency>
35
36           <dependency>
37               <groupId>org.opendaylight.mdsal</groupId>
38               <artifactId>mdsal-dom-api</artifactId>
39               <version>${project.version}</version>
40           </dependency>
41           <dependency>
42               <groupId>org.opendaylight.mdsal</groupId>
43               <artifactId>mdsal-dom-spi</artifactId>
44               <version>${project.version}</version>
45           </dependency>
46           <dependency>
47               <groupId>org.opendaylight.mdsal</groupId>
48               <artifactId>mdsal-dom-broker</artifactId>
49               <version>${project.version}</version>
50           </dependency>
51           <dependency>
52               <groupId>org.opendaylight.mdsal</groupId>
53               <artifactId>mdsal-dom-inmemory-datastore</artifactId>
54               <version>${project.version}</version>
55           </dependency>
56
57             <!-- Binding MD-SAL & Java Binding -->
58             <dependency>
59                 <groupId>org.opendaylight.mdsal</groupId>
60                 <artifactId>maven-sal-api-gen-plugin</artifactId>
61                 <version>0.8.0-SNAPSHOT</version>
62             </dependency>
63             <dependency>
64                 <groupId>org.opendaylight.mdsal</groupId>
65                 <artifactId>mdsal-binding-generator-api</artifactId>
66                 <version>0.8.0-SNAPSHOT</version>
67             </dependency>
68             <dependency>
69                 <groupId>org.opendaylight.mdsal</groupId>
70                 <artifactId>mdsal-binding-generator-util</artifactId>
71                 <version>0.8.0-SNAPSHOT</version>
72             </dependency>
73             <dependency>
74                 <groupId>org.opendaylight.mdsal</groupId>
75                 <artifactId>mdsal-binding-generator-impl</artifactId>
76                 <version>0.8.0-SNAPSHOT</version>
77             </dependency>
78             <dependency>
79                 <groupId>org.opendaylight.mdsal</groupId>
80                 <artifactId>mdsal-binding-java-api-generator</artifactId>
81                 <version>0.8.0-SNAPSHOT</version>
82             </dependency>
83             <dependency>
84                 <groupId>org.opendaylight.mdsal</groupId>
85                 <artifactId>yang-binding</artifactId>
86                 <version>0.8.0-SNAPSHOT</version>
87             </dependency>
88             <dependency>
89                 <groupId>org.opendaylight.mdsal</groupId>
90                 <artifactId>mdsal-binding-dom-codec</artifactId>
91                 <version>0.8.0-SNAPSHOT</version>
92             </dependency>
93
94             <dependency>
95                 <groupId>org.opendaylight.mdsal</groupId>
96                 <artifactId>mdsal-binding-api</artifactId>
97                 <version>${project.version}</version>
98             </dependency>
99             <dependency>
100                 <groupId>org.opendaylight.mdsal</groupId>
101                 <artifactId>mdsal-binding-dom-adapter</artifactId>
102                 <version>${project.version}</version>
103             </dependency>
104             <dependency>
105                 <groupId>org.opendaylight.mdsal</groupId>
106                 <artifactId>mdsal-binding-util</artifactId>
107                 <version>${project.version}</version>
108             </dependency>
109
110             <dependency>
111                 <groupId>org.opendaylight.mdsal.model</groupId>
112                 <artifactId>yang-ext</artifactId>
113                 <version>2013.09.07.8-SNAPSHOT</version>
114             </dependency>
115
116             <dependency>
117                 <groupId>org.opendaylight.mdsal</groupId>
118                 <artifactId>mdsal-binding-test-model</artifactId>
119                 <version>0.8.0-SNAPSHOT</version>
120                 <scope>test</scope>
121             </dependency>
122         </dependencies>
123     </dependencyManagement>
124 </project>