Bump upstream versions
[genius.git] / commons / binding-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016, 2017 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <parent>
11     <groupId>org.opendaylight.mdsal</groupId>
12     <artifactId>binding-parent</artifactId>
13     <version>7.0.5</version>
14     <relativePath/>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.genius</groupId>
19   <artifactId>binding-parent</artifactId>
20   <version>0.10.0-SNAPSHOT</version>
21   <packaging>pom</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: genius :: ${project.artifactId}</name>
25
26   <properties>
27     <openflowplugin.version>0.12.0-SNAPSHOT</openflowplugin.version>
28     <genius.ovsdb.version>1.12.0-SNAPSHOT</genius.ovsdb.version>
29   </properties>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>org.opendaylight.controller</groupId>
35         <artifactId>controller-artifacts</artifactId>
36         <version>3.0.5</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40       <dependency>
41         <groupId>org.opendaylight.infrautils</groupId>
42         <artifactId>infrautils-artifacts</artifactId>
43         <version>1.9.5</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>com.mycila.guice.extensions</groupId>
49         <artifactId>mycila-guice-jsr250</artifactId>
50         <version>4.0.rc1</version>
51       </dependency>
52       <dependency>
53         <groupId>com.google.inject</groupId>
54         <artifactId>guice</artifactId>
55         <version>4.2.2</version>
56       </dependency>
57       <dependency>
58         <groupId>org.opendaylight.serviceutils</groupId>
59         <artifactId>serviceutils-artifacts</artifactId>
60         <version>0.7.0-SNAPSHOT</version>
61         <type>pom</type>
62         <scope>import</scope>
63       </dependency>
64       <dependency>
65         <groupId>org.opendaylight.openflowplugin</groupId>
66         <artifactId>openflowplugin-artifacts</artifactId>
67         <version>${openflowplugin.version}</version>
68         <type>pom</type>
69         <scope>import</scope>
70       </dependency>
71       <!-- TODO: this really should be declared in openflowplugin-artifacts -->
72       <dependency>
73         <groupId>org.opendaylight.openflowplugin.libraries</groupId>
74         <artifactId>liblldp</artifactId>
75         <version>${openflowplugin.version}</version>
76       </dependency>
77
78       <dependency>
79         <groupId>org.opendaylight.genius</groupId>
80         <artifactId>genius-artifacts</artifactId>
81         <!-- We cannot use ${project.version} here -->
82         <version>0.10.0-SNAPSHOT</version>
83         <type>pom</type>
84         <scope>import</scope>
85       </dependency>
86     </dependencies>
87   </dependencyManagement>
88
89   <dependencies>
90     <dependency>
91       <groupId>org.osgi</groupId>
92       <artifactId>org.osgi.core</artifactId>
93     </dependency>
94
95     <!-- Testing Dependencies -->
96
97     <dependency>
98       <groupId>org.hamcrest</groupId>
99       <artifactId>hamcrest</artifactId>
100       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
101       <scope>compile</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.hamcrest</groupId>
105       <artifactId>hamcrest-library</artifactId>
106       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
107       <scope>compile</scope>
108     </dependency>
109   </dependencies>
110
111   <build>
112     <plugins>
113       <plugin>
114         <groupId>org.apache.maven.plugins</groupId>
115         <artifactId>maven-checkstyle-plugin</artifactId>
116         <configuration>
117           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
118         </configuration>
119       </plugin>
120       <plugin>
121         <groupId>com.github.spotbugs</groupId>
122         <artifactId>spotbugs-maven-plugin</artifactId>
123         <configuration>
124           <failOnError>true</failOnError>
125         </configuration>
126       </plugin>
127     </plugins>
128   </build>
129 </project>