0a77083c55c30f153859410b5e45a9ca847d9a33
[neutron.git] / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.opendaylight.mdsal</groupId>
8     <artifactId>binding-parent</artifactId>
9     <version>0.13.0-SNAPSHOT</version>
10     <relativePath/>
11   </parent>
12
13   <groupId>org.opendaylight.neutron</groupId>
14   <artifactId>project-neutron-parent</artifactId>
15   <version>0.11.0-SNAPSHOT</version>
16   <packaging>pom</packaging>
17   <!-- <name> formatting is used by autorelease to parse and notify projects on
18        build failure. Please do not modify this unless you have a good reason. -->
19   <name>ODL :: neutron :: ${project.artifactId}</name>
20
21   <properties>
22     <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
23     <sonar.jacoco.itReportPath>../target/jacoco-it.exec</sonar.jacoco.itReportPath>
24   </properties>
25   <scm>
26     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
27     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
28     <tag>HEAD</tag>
29   </scm>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>org.opendaylight.controller</groupId>
35         <artifactId>mdsal-artifacts</artifactId>
36         <version>1.8.0-SNAPSHOT</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40     </dependencies>
41   </dependencyManagement>
42
43   <build>
44     <plugins>
45       <plugin>
46         <artifactId>maven-checkstyle-plugin</artifactId>
47         <configuration>
48           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
49         </configuration>
50       </plugin>
51     </plugins>
52   </build>
53 </project>