2aaaa9d2109d6ac7b70f85f5da081c510928d9ec
[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     </dependencies>
48   </dependencyManagement>
49
50   <build>
51     <plugins>
52       <plugin>
53         <artifactId>maven-checkstyle-plugin</artifactId>
54         <configuration>
55           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60 </project>