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