Fix failing LockManagerTest (NoClassDefFoundError)
[genius.git] / commons / config-parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2016 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
11   <parent>
12    <groupId>org.opendaylight.mdsal</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>0.12.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>config-parent</artifactId>
21   <version>0.4.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: genius :: ${project.artifactId}</name>
26
27   <properties>
28     <!-- ODL -->
29     <genius.version>0.4.0-SNAPSHOT</genius.version>
30     <yangtools.version>2.0.0-SNAPSHOT</yangtools.version>
31     <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
32     <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
33     <genius.mdsalutil.version>0.4.0-SNAPSHOT</genius.mdsalutil.version>
34     <model.bgp.version>2013.07.15.12.0-SNAPSHOT</model.bgp.version>
35     <openflowplugin.version>0.6.0-SNAPSHOT</openflowplugin.version>
36     <genius.ovsdb.version>1.6.0-SNAPSHOT</genius.ovsdb.version>
37     <genius.infrautils.version>1.3.0-SNAPSHOT</genius.infrautils.version>
38     <liblldp.version>0.14.0-SNAPSHOT</liblldp.version>
39   </properties>
40
41   <dependencyManagement>
42     <dependencies>
43       <dependency>
44         <groupId>org.opendaylight.mdsal</groupId>
45         <artifactId>mdsal-artifacts</artifactId>
46         <version>2.4.0-SNAPSHOT</version>
47         <type>pom</type>
48         <scope>import</scope>
49       </dependency>
50       <dependency>
51         <groupId>org.opendaylight.mdsal.model</groupId>
52         <artifactId>mdsal-model-artifacts</artifactId>
53         <version>${mdsal.model.version}</version>
54         <type>pom</type>
55         <scope>import</scope>
56       </dependency>
57       <dependency>
58         <groupId>org.opendaylight.controller</groupId>
59         <artifactId>mdsal-artifacts</artifactId>
60         <version>${controller.mdsal.version}</version>
61         <type>pom</type>
62         <scope>import</scope>
63       </dependency>
64       <dependency>
65         <groupId>org.opendaylight.yangtools</groupId>
66         <artifactId>yangtools-artifacts</artifactId>
67         <version>${yangtools.version}</version>
68         <type>pom</type>
69         <scope>import</scope>
70       </dependency>
71     </dependencies>
72   </dependencyManagement>
73
74   <dependencies>
75     <dependency>
76       <groupId>org.osgi</groupId>
77       <artifactId>org.osgi.core</artifactId>
78     </dependency>
79
80     <!-- Testing Dependencies -->
81     <dependency>
82       <groupId>junit</groupId>
83       <artifactId>junit</artifactId>
84       <scope>test</scope>
85     </dependency>
86
87     <dependency>
88       <groupId>org.mockito</groupId>
89       <artifactId>mockito-core</artifactId>
90       <scope>test</scope>
91     </dependency>
92   </dependencies>
93
94   <build>
95     <plugins>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-checkstyle-plugin</artifactId>
99         <configuration>
100           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
101         </configuration>
102       </plugin>
103     </plugins>
104   </build>
105
106 </project>