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