Adopt odlparent-8.1.0/yangtools-6.0.4
[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>7.0.5-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>osgi.annotation</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.osgi</groupId>
67             <artifactId>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                 <groupId>org.apache.felix</groupId>
108                 <artifactId>maven-bundle-plugin</artifactId>
109                 <extensions>true</extensions>
110                 <configuration>
111                     <Automatic-Module-Name>org.opendaylight.mdsal.binding.dom.adapter</Automatic-Module-Name>
112                     <instructions>
113                         <!-- Karaf cannot handle Factory Component requirements, see https://issues.apache.org/jira/browse/KARAF-6625 -->
114                         <_dsannotations-options>norequirements</_dsannotations-options>
115                     </instructions>
116                 </configuration>
117             </plugin>
118             <plugin>
119                 <artifactId>maven-jar-plugin</artifactId>
120                 <executions>
121                     <execution>
122                         <goals>
123                             <goal>test-jar</goal>
124                         </goals>
125                     </execution>
126                 </executions>
127             </plugin>
128             <plugin>
129                 <artifactId>maven-source-plugin</artifactId>
130                 <executions>
131                     <execution>
132                         <goals>
133                             <goal>test-jar-no-fork</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138         </plugins>
139     </build>
140     <scm>
141         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
142         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
143         <tag>HEAD</tag>
144         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
145     </scm>
146 </project>