Drop mdsal-binding-dom-adapter's dependency on in-memory datastore
[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>dom-parent</artifactId>
15         <version>6.0.1-SNAPSHOT</version>
16         <relativePath>../../dom/dom-parent</relativePath>
17     </parent>
18
19     <artifactId>mdsal-binding-dom-adapter</artifactId>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>com.google.guava</groupId>
25             <artifactId>guava</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.mdsal</groupId>
29             <artifactId>mdsal-binding-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal</groupId>
33             <artifactId>mdsal-binding-util</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.mdsal</groupId>
37             <artifactId>mdsal-dom-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal</groupId>
41             <artifactId>mdsal-dom-spi</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal</groupId>
45             <artifactId>mdsal-binding-dom-codec</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>yang-data-impl</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-model-util</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.kohsuke.metainf-services</groupId>
57             <artifactId>metainf-services</artifactId>
58             <optional>true</optional>
59         </dependency>
60         <dependency>
61             <groupId>javax.inject</groupId>
62             <artifactId>javax.inject</artifactId>
63             <optional>true</optional>
64         </dependency>
65         <dependency>
66             <groupId>org.osgi</groupId>
67             <artifactId>org.osgi.core</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.osgi</groupId>
71             <artifactId>osgi.cmpn</artifactId>
72         </dependency>
73
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>mdsal-binding-generator-impl</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal</groupId>
81             <artifactId>mdsal-binding-runtime-spi</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.mdsal</groupId>
86             <artifactId>mdsal-dom-broker</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>yang-test-util</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.mdsal</groupId>
100             <artifactId>mdsal-binding-test-model</artifactId>
101         </dependency>
102     </dependencies>
103
104     <build>
105         <plugins>
106             <plugin>
107                 <artifactId>maven-jar-plugin</artifactId>
108                 <executions>
109                     <execution>
110                         <goals>
111                             <goal>test-jar</goal>
112                         </goals>
113                     </execution>
114                 </executions>
115             </plugin>
116             <plugin>
117                 <artifactId>maven-source-plugin</artifactId>
118                 <executions>
119                     <execution>
120                         <goals>
121                             <goal>test-jar-no-fork</goal>
122                         </goals>
123                     </execution>
124                 </executions>
125             </plugin>
126         </plugins>
127     </build>
128     <scm>
129         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
130         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
131         <tag>HEAD</tag>
132         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
133     </scm>
134 </project>