Freeze 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.6</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     <genius.ovsdb.version>1.12.0</genius.ovsdb.version>
28   </properties>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>org.opendaylight.controller</groupId>
34         <artifactId>controller-artifacts</artifactId>
35         <version>3.0.7</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39       <dependency>
40         <groupId>org.opendaylight.infrautils</groupId>
41         <artifactId>infrautils-artifacts</artifactId>
42         <version>1.9.6</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46       <dependency>
47         <groupId>com.mycila.guice.extensions</groupId>
48         <artifactId>mycila-guice-jsr250</artifactId>
49         <version>4.0.rc1</version>
50       </dependency>
51       <dependency>
52         <groupId>com.google.inject</groupId>
53         <artifactId>guice</artifactId>
54         <version>4.2.2</version>
55       </dependency>
56       <dependency>
57         <groupId>org.opendaylight.serviceutils</groupId>
58         <artifactId>serviceutils-artifacts</artifactId>
59         <version>0.7.0</version>
60         <type>pom</type>
61         <scope>import</scope>
62       </dependency>
63       <dependency>
64         <groupId>org.opendaylight.openflowplugin</groupId>
65         <artifactId>openflowplugin-artifacts</artifactId>
66         <version>0.12.0</version>
67         <type>pom</type>
68         <scope>import</scope>
69       </dependency>
70       <!-- TODO: this really should be declared in openflowplugin-artifacts -->
71       <dependency>
72         <groupId>org.opendaylight.openflowplugin.libraries</groupId>
73         <artifactId>liblldp</artifactId>
74         <version>0.12.0</version>
75       </dependency>
76
77       <dependency>
78         <groupId>org.opendaylight.genius</groupId>
79         <artifactId>genius-artifacts</artifactId>
80         <!-- We cannot use ${project.version} here -->
81         <version>0.10.0-SNAPSHOT</version>
82         <type>pom</type>
83         <scope>import</scope>
84       </dependency>
85     </dependencies>
86   </dependencyManagement>
87
88   <dependencies>
89     <dependency>
90       <groupId>org.osgi</groupId>
91       <artifactId>org.osgi.core</artifactId>
92     </dependency>
93
94     <!-- Testing Dependencies -->
95
96     <dependency>
97       <groupId>org.hamcrest</groupId>
98       <artifactId>hamcrest</artifactId>
99       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
100       <scope>compile</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.hamcrest</groupId>
104       <artifactId>hamcrest-library</artifactId>
105       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
106       <scope>compile</scope>
107     </dependency>
108   </dependencies>
109
110   <build>
111     <plugins>
112       <plugin>
113         <groupId>org.apache.maven.plugins</groupId>
114         <artifactId>maven-checkstyle-plugin</artifactId>
115         <configuration>
116           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
117         </configuration>
118       </plugin>
119       <plugin>
120         <groupId>com.github.spotbugs</groupId>
121         <artifactId>spotbugs-maven-plugin</artifactId>
122         <configuration>
123           <failOnError>true</failOnError>
124         </configuration>
125       </plugin>
126     </plugins>
127   </build>
128 </project>