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