Release mdsal
[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>9.0.3</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.kohsuke.metainf-services</groupId>
49             <artifactId>metainf-services</artifactId>
50             <optional>true</optional>
51         </dependency>
52         <dependency>
53             <groupId>com.guicedee.services</groupId>
54             <artifactId>javax.inject</artifactId>
55             <optional>true</optional>
56         </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.annotation.versioning</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.osgi</groupId>
63             <artifactId>org.osgi.framework</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.osgi</groupId>
67             <artifactId>org.osgi.service.component</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.osgi</groupId>
71             <artifactId>org.osgi.service.component.annotations</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.osgi</groupId>
75             <artifactId>org.osgi.util.tracker</artifactId>
76         </dependency>
77
78         <dependency>
79             <groupId>org.opendaylight.mdsal</groupId>
80             <artifactId>mdsal-binding-generator</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.mdsal</groupId>
85             <artifactId>mdsal-binding-runtime-spi</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.mdsal</groupId>
90             <artifactId>mdsal-dom-broker</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.mdsal</groupId>
95             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>yang-test-util</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-binding-test-model</artifactId>
105         </dependency>
106     </dependencies>
107
108     <build>
109         <plugins>
110             <plugin>
111                 <groupId>org.apache.felix</groupId>
112                 <artifactId>maven-bundle-plugin</artifactId>
113                 <extensions>true</extensions>
114                 <configuration>
115                     <Automatic-Module-Name>org.opendaylight.mdsal.binding.dom.adapter</Automatic-Module-Name>
116                     <instructions>
117                         <!-- Karaf cannot handle Factory Component requirements, see https://issues.apache.org/jira/browse/KARAF-6625 -->
118                         <_dsannotations-options>norequirements</_dsannotations-options>
119                     </instructions>
120                 </configuration>
121             </plugin>
122             <plugin>
123                 <artifactId>maven-jar-plugin</artifactId>
124                 <executions>
125                     <execution>
126                         <goals>
127                             <goal>test-jar</goal>
128                         </goals>
129                     </execution>
130                 </executions>
131             </plugin>
132             <plugin>
133                 <artifactId>maven-source-plugin</artifactId>
134                 <executions>
135                     <execution>
136                         <goals>
137                             <goal>test-jar-no-fork</goal>
138                         </goals>
139                     </execution>
140                 </executions>
141             </plugin>
142         </plugins>
143     </build>
144     <scm>
145         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
146         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
147         <tag>HEAD</tag>
148         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
149     </scm>
150 </project>