67648a97669529361ef43d6e675372e146ba010d
[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>4.0.2</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.7.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     <ietf.inet.types.version>2010.09.24.15.0-SNAPSHOT</ietf.inet.types.version>
28     <ietf.yang.types.version>2010.09.24.15.0-SNAPSHOT</ietf.yang.types.version>
29     <ietf.interfaces.version>2014.05.08.15.0-SNAPSHOT</ietf.interfaces.version>
30     <iana.if.type.version>2014.05.08.15.0-SNAPSHOT</iana.if.type.version>
31     <yang.ext.version>2013.09.07.15.0-SNAPSHOT</yang.ext.version>
32     <controller.mdsal.version>1.10.0-SNAPSHOT</controller.mdsal.version>
33     <model.bgp.version>2013.07.15.15.0-SNAPSHOT</model.bgp.version>
34     <openflowplugin.version>0.9.0-SNAPSHOT</openflowplugin.version>
35     <genius.ovsdb.version>1.9.0-SNAPSHOT</genius.ovsdb.version>
36     <genius.infrautils.version>1.6.0-SNAPSHOT</genius.infrautils.version>
37   </properties>
38
39   <dependencyManagement>
40     <dependencies>
41       <dependency>
42         <groupId>org.opendaylight.controller</groupId>
43         <artifactId>mdsal-artifacts</artifactId>
44         <version>${controller.mdsal.version}</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <groupId>org.osgi</groupId>
54       <artifactId>org.osgi.core</artifactId>
55     </dependency>
56
57     <!-- Testing Dependencies -->
58
59     <dependency>
60       <groupId>org.hamcrest</groupId>
61       <artifactId>hamcrest</artifactId>
62       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
63       <scope>compile</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.hamcrest</groupId>
67       <artifactId>hamcrest-library</artifactId>
68       <!-- Hamcrest is internally used by Awaitility, so must be compile instead of test scope for build to work -->
69       <scope>compile</scope>
70     </dependency>
71
72     <dependency>
73       <groupId>junit</groupId>
74       <artifactId>junit</artifactId>
75       <scope>test</scope>
76     </dependency>
77
78     <dependency>
79       <groupId>org.mockito</groupId>
80       <artifactId>mockito-core</artifactId>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <groupId>org.apache.maven.plugins</groupId>
89         <artifactId>maven-checkstyle-plugin</artifactId>
90         <configuration>
91           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
92         </configuration>
93       </plugin>
94       <plugin>
95         <groupId>com.github.spotbugs</groupId>
96         <artifactId>spotbugs-maven-plugin</artifactId>
97         <configuration>
98           <failOnError>true</failOnError>
99         </configuration>
100       </plugin>
101     </plugins>
102   </build>
103 </project>