propagate datastore exceptions all the way to northbound
[neutron.git] / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 Intel Corporation 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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.13.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.neutron</groupId>
21   <artifactId>project-neutron-parent</artifactId>
22   <version>0.11.0-SNAPSHOT</version>
23   <packaging>pom</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: neutron :: ${project.artifactId}</name>
27
28   <properties>
29     <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
30     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
31   </properties>
32   <scm>
33     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
34     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
35     <tag>HEAD</tag>
36   </scm>
37
38   <dependencyManagement>
39     <dependencies>
40       <dependency>
41         <groupId>org.opendaylight.infrautils</groupId>
42         <artifactId>infrautils-artifacts</artifactId>
43         <version>1.4.0-SNAPSHOT</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47       <dependency>
48         <groupId>org.opendaylight.controller</groupId>
49         <artifactId>mdsal-artifacts</artifactId>
50         <version>1.8.0-SNAPSHOT</version>
51         <type>pom</type>
52         <scope>import</scope>
53       </dependency>
54
55       <!-- Bump EclipseLink Moxy JAXB implementation to a higher version than the one we get from odlparent
56            until https://git.opendaylight.org/gerrit/#/c/70716/ is merged, an odlparent with it is release and this project bumped to it;
57            TODO then remove this again.
58
59            This was done in the hope it may help with the weird spurious test failures seen in NEUTRON-159.
60
61            NB odl-neutron-northbound-api has identical version bumps, and must be kept in sync with this.
62        -->
63       <dependency>
64         <groupId>org.eclipse.persistence</groupId>
65         <artifactId>org.eclipse.persistence.antlr</artifactId>
66         <version>2.7.1</version>
67       </dependency>
68       <dependency>
69         <groupId>org.eclipse.persistence</groupId>
70         <artifactId>org.eclipse.persistence.core</artifactId>
71         <version>2.7.1</version>
72       </dependency>
73       <dependency>
74         <groupId>org.eclipse.persistence</groupId>
75         <artifactId>org.eclipse.persistence.moxy</artifactId>
76         <version>2.7.1</version>
77       </dependency>
78     </dependencies>
79   </dependencyManagement>
80
81   <build>
82     <plugins>
83       <plugin>
84         <artifactId>maven-checkstyle-plugin</artifactId>
85         <configuration>
86           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
87         </configuration>
88       </plugin>
89     </plugins>
90   </build>
91 </project>