bump EclipseLink Moxy JAXB implementation from 2.6.2 to 2.7.1
[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.controller</groupId>
42         <artifactId>mdsal-artifacts</artifactId>
43         <version>1.8.0-SNAPSHOT</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47
48       <!-- Bump EclipseLink Moxy JAXB implementation to a higher version than the one we get from odlparent
49            until https://git.opendaylight.org/gerrit/#/c/70716/ is merged, an odlparent with it is release and this project bumped to it;
50            TODO then remove this again.
51
52            This was done in the hope it may help with the weird spurious test failures seen in NEUTRON-159.
53
54            NB odl-neutron-northbound-api has identical version bumps, and must be kept in sync with this.
55        -->
56       <dependency>
57         <groupId>org.eclipse.persistence</groupId>
58         <artifactId>org.eclipse.persistence.antlr</artifactId>
59         <version>2.7.1</version>
60       </dependency>
61       <dependency>
62         <groupId>org.eclipse.persistence</groupId>
63         <artifactId>org.eclipse.persistence.core</artifactId>
64         <version>2.7.1</version>
65       </dependency>
66       <dependency>
67         <groupId>org.eclipse.persistence</groupId>
68         <artifactId>org.eclipse.persistence.moxy</artifactId>
69         <version>2.7.1</version>
70       </dependency>
71     </dependencies>
72   </dependencyManagement>
73
74   <build>
75     <plugins>
76       <plugin>
77         <artifactId>maven-checkstyle-plugin</artifactId>
78         <configuration>
79           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
80         </configuration>
81       </plugin>
82     </plugins>
83   </build>
84 </project>