Bump versions to 0.16.6-SNAPSHOT
[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>9.0.6</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.16.6-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     <!-- FIXME: this seems to be broken by dependency plugin 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>4.0.3</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>7.0.8</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>8.0.5</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>2.0.5</version>
75                 <type>pom</type>
76                 <scope>import</scope>
77             </dependency>
78         </dependencies>
79     </dependencyManagement>
80
81     <reporting>
82         <plugins>
83             <plugin>
84                 <groupId>org.apache.maven.plugins</groupId>
85                 <artifactId>maven-project-info-reports-plugin</artifactId>
86                 <configuration>
87                     <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
88                     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
89                 </configuration>
90                 <reportSets>
91                     <reportSet>
92                         <reports>
93                             <report>dependency-info</report>
94                             <report>license</report>
95                         </reports>
96                     </reportSet>
97                 </reportSets>
98             </plugin>
99             <plugin>
100                 <groupId>org.apache.maven.plugins</groupId>
101                 <artifactId>maven-jxr-plugin</artifactId>
102                 <version>3.0.4</version>
103                 <configuration>
104                     <aggregate>true</aggregate>
105                     <linkJavadoc>true</linkJavadoc>
106                 </configuration>
107             </plugin>
108             <plugin>
109                 <groupId>com.github.spotbugs</groupId>
110                 <artifactId>spotbugs-maven-plugin</artifactId>
111                 <configuration>
112                     <effort>Max</effort>
113                     <threshold>Low</threshold>
114                     <goal>site</goal>
115                 </configuration>
116             </plugin>
117             <plugin>
118                 <groupId>org.codehaus.mojo</groupId>
119                 <artifactId>jdepend-maven-plugin</artifactId>
120             </plugin>
121         </plugins>
122     </reporting>
123
124     <build>
125         <plugins>
126             <plugin>
127                 <groupId>org.apache.maven.plugins</groupId>
128                 <artifactId>maven-surefire-plugin</artifactId>
129                 <configuration>
130                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
131                     <runOrder>alphabetical</runOrder>
132                     <threadCount>1</threadCount>
133                 </configuration>
134             </plugin>
135         </plugins>
136     </build>
137     <scm>
138         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
139         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
140         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
141         <tag>HEAD</tag>
142     </scm>
143 </project>