bc2d0c77143f57b46fc2c2819b5fe241c72ba91b
[bgpcep.git] / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>13.0.11</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.bgpcep</groupId>
20     <artifactId>bgpcep-parent</artifactId>
21     <name>BGPCEP common parent</name>
22     <version>0.21.4-SNAPSHOT</version>
23     <packaging>pom</packaging>
24
25     <licenses>
26         <license>
27             <name>The Eclipse Public License v1.0</name>
28             <url>http://www.eclipse.org/legal/epl-v10.html</url>
29             <distribution>repo</distribution>
30         </license>
31     </licenses>
32
33     <properties>
34         <odlparent.dependency.enforce>true</odlparent.dependency.enforce>
35     </properties>
36
37     <dependencyManagement>
38         <dependencies>
39             <dependency>
40                 <groupId>org.opendaylight.bgpcep</groupId>
41                 <artifactId>bgpcep-artifacts</artifactId>
42                 <version>${project.version}</version>
43                 <type>pom</type>
44                 <scope>import</scope>
45             </dependency>
46             <!-- ODL-CONTROLLER-ARTIFACTS -->
47             <dependency>
48                 <groupId>org.opendaylight.controller</groupId>
49                 <artifactId>controller-artifacts</artifactId>
50                 <version>9.0.1</version>
51                 <scope>import</scope>
52                 <type>pom</type>
53             </dependency>
54             <!-- YANG TOOLS ARTIFACTS -->
55             <dependency>
56                 <groupId>org.opendaylight.yangtools</groupId>
57                 <artifactId>yangtools-artifacts</artifactId>
58                 <version>13.0.2</version>
59                 <scope>import</scope>
60                 <type>pom</type>
61             </dependency>
62             <!-- ODL-MDSAL-ARTIFACTS -->
63             <dependency>
64                 <groupId>org.opendaylight.mdsal</groupId>
65                 <artifactId>mdsal-artifacts</artifactId>
66                 <version>13.0.1</version>
67                 <type>pom</type>
68                 <scope>import</scope>
69             </dependency>
70             <!-- ODL-NETCONF-ARTIFACTS -->
71             <dependency>
72                 <groupId>org.opendaylight.netconf</groupId>
73                 <artifactId>netconf-artifacts</artifactId>
74                 <version>7.0.3</version>
75                 <type>pom</type>
76                 <scope>import</scope>
77             </dependency>
78             <!-- ODL-INFRAUTILS-ARTIFACTS -->
79             <dependency>
80                 <groupId>org.opendaylight.infrautils</groupId>
81                 <artifactId>infrautils-artifacts</artifactId>
82                 <version>6.0.6</version>
83                 <type>pom</type>
84                 <scope>import</scope>
85             </dependency>
86         </dependencies>
87     </dependencyManagement>
88
89     <reporting>
90         <plugins>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-project-info-reports-plugin</artifactId>
94                 <configuration>
95                     <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
96                     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
97                 </configuration>
98                 <reportSets>
99                     <reportSet>
100                         <reports>
101                             <report>dependency-info</report>
102                             <report>license</report>
103                         </reports>
104                     </reportSet>
105                 </reportSets>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-jxr-plugin</artifactId>
110                 <version>3.3.1</version>
111                 <configuration>
112                     <aggregate>true</aggregate>
113                     <linkJavadoc>true</linkJavadoc>
114                 </configuration>
115             </plugin>
116             <plugin>
117                 <groupId>com.github.spotbugs</groupId>
118                 <artifactId>spotbugs-maven-plugin</artifactId>
119                 <configuration>
120                     <effort>Max</effort>
121                     <threshold>Low</threshold>
122                     <goal>site</goal>
123                 </configuration>
124             </plugin>
125             <plugin>
126                 <groupId>org.codehaus.mojo</groupId>
127                 <artifactId>jdepend-maven-plugin</artifactId>
128             </plugin>
129         </plugins>
130     </reporting>
131
132     <build>
133         <plugins>
134             <plugin>
135                 <groupId>org.apache.maven.plugins</groupId>
136                 <artifactId>maven-surefire-plugin</artifactId>
137                 <configuration>
138                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
139                     <runOrder>alphabetical</runOrder>
140                     <threadCount>1</threadCount>
141                 </configuration>
142             </plugin>
143         </plugins>
144     </build>
145     <scm>
146         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
147         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
148         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
149         <tag>HEAD</tag>
150     </scm>
151 </project>