Bump versions for mdsal-5.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>5.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>javax.inject</groupId>
25             <artifactId>javax.inject</artifactId>
26             <optional>true</optional>
27         </dependency>
28         <dependency>
29             <groupId>javax.annotation</groupId>
30             <artifactId>javax.annotation-api</artifactId>
31             <optional>true</optional>
32         </dependency>
33         <dependency>
34             <groupId>com.google.guava</groupId>
35             <artifactId>guava</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.javassist</groupId>
39             <artifactId>javassist</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-binding-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-binding-util</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-dom-broker</artifactId>
52             <scope>compile</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-dom-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.mdsal</groupId>
60             <artifactId>mdsal-dom-spi</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-binding-generator-impl</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.mdsal</groupId>
68             <artifactId>mdsal-binding-dom-codec</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools</groupId>
72             <artifactId>yang-data-impl</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.yangtools</groupId>
76             <artifactId>yang-model-util</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>yang-test-util</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.osgi</groupId>
84             <artifactId>org.osgi.core</artifactId>
85         </dependency>
86
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>yang-parser-impl</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.mdsal</groupId>
94             <artifactId>mdsal-binding-test-model</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.mdsal</groupId>
98             <artifactId>mdsal-dom-inmemory-datastore</artifactId>
99             <!-- scope=compile to make test-jar work -->
100         </dependency>
101     </dependencies>
102
103     <build>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.maven.plugins</groupId>
107                 <artifactId>maven-jar-plugin</artifactId>
108                 <executions>
109                     <execution>
110                         <goals>
111                             <goal>test-jar</goal>
112                         </goals>
113                     </execution>
114                 </executions>
115             </plugin>
116             <plugin>
117                 <groupId>org.apache.maven.plugins</groupId>
118                 <artifactId>maven-checkstyle-plugin</artifactId>
119                 <configuration>
120                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
121                 </configuration>
122             </plugin>
123             <plugin>
124                 <groupId>com.github.spotbugs</groupId>
125                 <artifactId>spotbugs-maven-plugin</artifactId>
126                 <configuration>
127                     <failOnError>true</failOnError>
128                 </configuration>
129             </plugin>
130         </plugins>
131     </build>
132     <scm>
133         <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
134         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
135         <tag>HEAD</tag>
136         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
137     </scm>
138 </project>