Bump odlparent to 6.0.0
[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>6.0.0</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.13.0-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     <dependencyManagement>
34         <dependencies>
35             <dependency>
36                 <groupId>org.opendaylight.bgpcep</groupId>
37                 <artifactId>bgpcep-artifacts</artifactId>
38                 <version>${project.version}</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42             <!-- ODL-CONTROLLER-ARTIFACTS -->
43             <dependency>
44                 <groupId>org.opendaylight.controller</groupId>
45                 <artifactId>mdsal-artifacts</artifactId>
46                 <version>1.11.0-SNAPSHOT</version>
47                 <scope>import</scope>
48                 <type>pom</type>
49             </dependency>
50             <!-- YANG TOOLS ARTIFACTS -->
51             <dependency>
52                 <groupId>org.opendaylight.yangtools</groupId>
53                 <artifactId>yangtools-artifacts</artifactId>
54                 <version>3.0.5</version>
55                 <scope>import</scope>
56                 <type>pom</type>
57             </dependency>
58             <!-- ODL-MDSAL-ARTIFACTS -->
59             <dependency>
60                 <groupId>org.opendaylight.mdsal</groupId>
61                 <artifactId>mdsal-artifacts</artifactId>
62                 <version>4.0.6</version>
63                 <type>pom</type>
64                 <scope>import</scope>
65             </dependency>
66             <!-- ODL-NETCONF-ARTIFACTS -->
67             <dependency>
68                 <groupId>org.opendaylight.netconf</groupId>
69                 <artifactId>netconf-artifacts</artifactId>
70                 <version>1.8.0-SNAPSHOT</version>
71                 <type>pom</type>
72                 <scope>import</scope>
73             </dependency>
74         </dependencies>
75     </dependencyManagement>
76
77     <reporting>
78         <plugins>
79             <plugin>
80                 <groupId>org.apache.maven.plugins</groupId>
81                 <artifactId>maven-project-info-reports-plugin</artifactId>
82                 <version>${projectinfo}</version>
83                 <configuration>
84                     <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
85                     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
86                 </configuration>
87                 <reportSets>
88                     <reportSet>
89                         <reports>
90                             <report>dependency-info</report>
91                             <report>license</report>
92                         </reports>
93                     </reportSet>
94                 </reportSets>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-jxr-plugin</artifactId>
99                 <version>2.5</version>
100                 <configuration>
101                     <aggregate>true</aggregate>
102                     <linkJavadoc>true</linkJavadoc>
103                 </configuration>
104             </plugin>
105             <plugin>
106                 <groupId>com.github.spotbugs</groupId>
107                 <artifactId>spotbugs-maven-plugin</artifactId>
108                 <configuration>
109                     <effort>Max</effort>
110                     <threshold>Low</threshold>
111                     <goal>site</goal>
112                 </configuration>
113             </plugin>
114             <plugin>
115                 <groupId>org.codehaus.mojo</groupId>
116                 <artifactId>jdepend-maven-plugin</artifactId>
117                 <version>2.0-beta-2</version>
118             </plugin>
119         </plugins>
120     </reporting>
121
122     <build>
123         <plugins>
124             <plugin>
125                 <groupId>org.apache.maven.plugins</groupId>
126                 <artifactId>maven-compiler-plugin</artifactId>
127                 <configuration>
128                     <source>${java.version.source}</source>
129                     <target>${java.version.target}</target>
130                     <testSource>${java.version.source}</testSource>
131                     <testTarget>${java.version.target}</testTarget>
132                     <showDeprecation>true</showDeprecation>
133                     <showWarnings>true</showWarnings>
134                     <optimize>true</optimize>
135                 </configuration>
136             </plugin>
137             <plugin>
138                 <groupId>org.apache.maven.plugins</groupId>
139                 <artifactId>maven-surefire-plugin</artifactId>
140                 <configuration>
141                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
142                     <runOrder>alphabetical</runOrder>
143                     <threadCount>1</threadCount>
144                 </configuration>
145             </plugin>
146             <plugin>
147                 <groupId>org.apache.maven.plugins</groupId>
148                 <artifactId>maven-dependency-plugin</artifactId>
149                 <executions>
150                     <execution>
151                         <id>analyze</id>
152                         <goals>
153                             <goal>analyze-only</goal>
154                         </goals>
155                         <configuration>
156                             <failOnWarning>true</failOnWarning>
157                             <ignoreNonCompile>true</ignoreNonCompile>
158                         </configuration>
159                     </execution>
160                 </executions>
161             </plugin>
162             <plugin>
163                 <groupId>org.apache.maven.plugins</groupId>
164                 <artifactId>maven-checkstyle-plugin</artifactId>
165                 <configuration>
166                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
167                 </configuration>
168             </plugin>
169             <plugin>
170                 <groupId>com.github.spotbugs</groupId>
171                 <artifactId>spotbugs-maven-plugin</artifactId>
172                 <configuration>
173                     <failOnError>true</failOnError>
174                 </configuration>
175             </plugin>
176         </plugins>
177     </build>
178     <scm>
179         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
180         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
181         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
182         <tag>HEAD</tag>
183     </scm>
184 </project>