Merge "Fix (some) unlogged Thread death uncaught exceptions, now logged"
[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.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.6.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.2.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.2.0-SNAPSHOT</genius.version>
30     <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
31     <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
32     <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
33     <genius.mdsalutil.version>0.2.0-SNAPSHOT</genius.mdsalutil.version>
34     <model.bgp.version>2013.07.15.10-SNAPSHOT</model.bgp.version>
35     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
36     <genius.ovsdb.version>1.4.0-SNAPSHOT</genius.ovsdb.version>
37     <genius.infrautils.version>1.1.0-SNAPSHOT</genius.infrautils.version>
38     <liblldp.version>0.12.0-SNAPSHOT</liblldp.version>
39     <karaf.shell.console.version>3.0.3</karaf.shell.console.version>
40   </properties>
41
42   <dependencyManagement>
43     <dependencies>
44       <dependency>
45         <groupId>org.opendaylight.mdsal</groupId>
46         <artifactId>mdsal-artifacts</artifactId>
47         <version>2.2.0-SNAPSHOT</version>
48         <type>pom</type>
49         <scope>import</scope>
50       </dependency>
51       <dependency>
52         <groupId>org.opendaylight.mdsal.model</groupId>
53         <artifactId>mdsal-model-artifacts</artifactId>
54         <version>${mdsal.model.version}</version>
55         <type>pom</type>
56         <scope>import</scope>
57       </dependency>
58     </dependencies>
59   </dependencyManagement>
60
61   <dependencies>
62     <!-- Testing Dependencies -->
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-core</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78       <plugin>
79         <groupId>org.apache.maven.plugins</groupId>
80         <artifactId>maven-checkstyle-plugin</artifactId>
81         <configuration>
82           <!--<propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>-->
83         </configuration>
84       </plugin>
85     </plugins>
86   </build>
87
88 </project>