Bump odlparent to 13.0.0
[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>12.0.0-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.github.spotbugs</groupId>
25             <artifactId>spotbugs-annotations</artifactId>
26             <optional>true</optional>
27         </dependency>
28         <dependency>
29             <groupId>com.google.guava</groupId>
30             <artifactId>guava</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.gaul</groupId>
34             <artifactId>modernizer-maven-annotations</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal</groupId>
38             <artifactId>mdsal-binding-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal</groupId>
42             <artifactId>mdsal-dom-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.mdsal</groupId>
46             <artifactId>mdsal-dom-spi</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-dom-codec</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.yangtools</groupId>
54             <artifactId>yang-data-impl</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.kohsuke.metainf-services</groupId>
58             <artifactId>metainf-services</artifactId>
59             <optional>true</optional>
60         </dependency>
61         <dependency>
62             <groupId>com.guicedee.services</groupId>
63             <artifactId>javax.inject</artifactId>
64             <optional>true</optional>
65         </dependency>
66         <dependency>
67             <groupId>org.osgi</groupId>
68             <artifactId>org.osgi.annotation.versioning</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.osgi</groupId>
72             <artifactId>org.osgi.framework</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.osgi</groupId>
76             <artifactId>org.osgi.service.component</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.service.component.annotations</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.osgi</groupId>
84             <artifactId>org.osgi.util.tracker</artifactId>
85         </dependency>
86
87         <dependency>
88             <groupId>org.opendaylight.mdsal</groupId>
89             <artifactId>mdsal-binding-generator</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>mdsal-binding-runtime-spi</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.mdsal</groupId>
99             <artifactId>mdsal-dom-broker</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.yangtools</groupId>
109             <artifactId>yang-test-util</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal</groupId>
113             <artifactId>mdsal-binding-test-model</artifactId>
114         </dependency>
115     </dependencies>
116
117     <build>
118         <plugins>
119             <plugin>
120                 <groupId>org.apache.felix</groupId>
121                 <artifactId>maven-bundle-plugin</artifactId>
122                 <extensions>true</extensions>
123                 <configuration>
124                     <Automatic-Module-Name>org.opendaylight.mdsal.binding.dom.adapter</Automatic-Module-Name>
125                 </configuration>
126             </plugin>
127             <plugin>
128                 <artifactId>maven-jar-plugin</artifactId>
129                 <executions>
130                     <execution>
131                         <goals>
132                             <goal>test-jar</goal>
133                         </goals>
134                     </execution>
135                 </executions>
136             </plugin>
137             <plugin>
138                 <artifactId>maven-source-plugin</artifactId>
139                 <executions>
140                     <execution>
141                         <goals>
142                             <goal>test-jar-no-fork</goal>
143                         </goals>
144                     </execution>
145                 </executions>
146             </plugin>
147         </plugins>
148     </build>
149     <scm>
150         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
151         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
152         <tag>HEAD</tag>
153         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
154     </scm>
155 </project>