74683753d63184e556b448aa5d5adf9af4dec26e
[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     </dependencies>
55   </dependencyManagement>
56
57   <build>
58     <plugins>
59       <plugin>
60         <artifactId>maven-checkstyle-plugin</artifactId>
61         <configuration>
62           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
63         </configuration>
64       </plugin>
65     </plugins>
66   </build>
67 </project>