2b52df5b8b05ddb15c1d710c8570c8495728c7f4
[mdsal.git] / binding / mdsal-binding-dom-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 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.mdsal</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>13.0.0-SNAPSHOT</version>
16         <relativePath>../../bundle-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-binding-dom-adapter</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>com.github.spotbugs</groupId>
25             <artifactId>spotbugs-annotations</artifactId>
26             <optional>true</optional>
27         </dependency>
28         <dependency>
29             <groupId>com.google.guava</groupId>
30             <artifactId>guava</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>com.guicedee.services</groupId>
34             <artifactId>javax.inject</artifactId>
35             <optional>true</optional>
36         </dependency>
37         <dependency>
38             <groupId>org.eclipse.jdt</groupId>
39             <artifactId>org.eclipse.jdt.annotation</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.gaul</groupId>
43             <artifactId>modernizer-maven-annotations</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.kohsuke.metainf-services</groupId>
47             <artifactId>metainf-services</artifactId>
48             <optional>true</optional>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.yangtools</groupId>
52             <artifactId>concepts</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>util</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-common</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>yang-data-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-data-impl</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>yang-data-tree-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>yang-model-api</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>yang-model-util</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.mdsal</groupId>
84             <artifactId>mdsal-binding-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.mdsal</groupId>
88             <artifactId>mdsal-binding-dom-codec-api</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.mdsal</groupId>
92             <artifactId>mdsal-binding-dom-codec-spi</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal</groupId>
96             <artifactId>mdsal-binding-model-api</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.mdsal</groupId>
100             <artifactId>mdsal-binding-runtime-api</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-binding-spec-util</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.mdsal</groupId>
108             <artifactId>mdsal-common-api</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.mdsal</groupId>
112             <artifactId>mdsal-dom-api</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.mdsal</groupId>
116             <artifactId>mdsal-dom-spi</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.mdsal</groupId>
120             <artifactId>yang-binding</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.osgi</groupId>
124             <artifactId>org.osgi.annotation.versioning</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.osgi</groupId>
128             <artifactId>org.osgi.framework</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.osgi</groupId>
132             <artifactId>org.osgi.service.component</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>org.osgi</groupId>
136             <artifactId>org.osgi.service.component.annotations</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>org.osgi</groupId>
140             <artifactId>org.osgi.util.tracker</artifactId>
141         </dependency>
142
143         <dependency>
144             <groupId>org.opendaylight.mdsal</groupId>
145             <artifactId>mdsal-binding-dom-codec</artifactId>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.opendaylight.mdsal</groupId>
150             <artifactId>mdsal-binding-generator</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.mdsal</groupId>
155             <artifactId>mdsal-binding-runtime-spi</artifactId>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.mdsal</groupId>
160             <artifactId>mdsal-dom-broker</artifactId>
161             <scope>test</scope>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.mdsal</groupId>
165             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
166             <scope>test</scope>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.yangtools</groupId>
170             <artifactId>yang-test-util</artifactId>
171         </dependency>
172         <dependency>
173             <groupId>org.opendaylight.mdsal</groupId>
174             <artifactId>mdsal-binding-test-model</artifactId>
175         </dependency>
176     </dependencies>
177
178     <build>
179         <plugins>
180             <plugin>
181                 <artifactId>maven-jar-plugin</artifactId>
182                 <executions>
183                     <execution>
184                         <goals>
185                             <goal>test-jar</goal>
186                         </goals>
187                     </execution>
188                 </executions>
189             </plugin>
190             <plugin>
191                 <artifactId>maven-source-plugin</artifactId>
192                 <executions>
193                     <execution>
194                         <goals>
195                             <goal>test-jar-no-fork</goal>
196                         </goals>
197                     </execution>
198                 </executions>
199             </plugin>
200         </plugins>
201     </build>
202     <scm>
203         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
204         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
205         <tag>HEAD</tag>
206         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
207     </scm>
208 </project>