Bump to odlparent-6.0.1/yangtools-4.0.2/mdsal-5.0.4
[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.1</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>4.0.2</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>5.0.4</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>3.0.0</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             </plugin>
118         </plugins>
119     </reporting>
120
121     <build>
122         <plugins>
123             <plugin>
124                 <groupId>org.apache.maven.plugins</groupId>
125                 <artifactId>maven-compiler-plugin</artifactId>
126                 <configuration>
127                     <source>${java.version.source}</source>
128                     <target>${java.version.target}</target>
129                     <testSource>${java.version.source}</testSource>
130                     <testTarget>${java.version.target}</testTarget>
131                     <showDeprecation>true</showDeprecation>
132                     <showWarnings>true</showWarnings>
133                     <optimize>true</optimize>
134                 </configuration>
135             </plugin>
136             <plugin>
137                 <groupId>org.apache.maven.plugins</groupId>
138                 <artifactId>maven-surefire-plugin</artifactId>
139                 <configuration>
140                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
141                     <runOrder>alphabetical</runOrder>
142                     <threadCount>1</threadCount>
143                 </configuration>
144             </plugin>
145             <plugin>
146                 <groupId>org.apache.maven.plugins</groupId>
147                 <artifactId>maven-dependency-plugin</artifactId>
148                 <executions>
149                     <execution>
150                         <id>analyze</id>
151                         <goals>
152                             <goal>analyze-only</goal>
153                         </goals>
154                         <configuration>
155                             <failOnWarning>true</failOnWarning>
156                             <ignoreNonCompile>true</ignoreNonCompile>
157                         </configuration>
158                     </execution>
159                 </executions>
160             </plugin>
161             <plugin>
162                 <groupId>org.apache.maven.plugins</groupId>
163                 <artifactId>maven-checkstyle-plugin</artifactId>
164                 <configuration>
165                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
166                 </configuration>
167             </plugin>
168             <plugin>
169                 <groupId>com.github.spotbugs</groupId>
170                 <artifactId>spotbugs-maven-plugin</artifactId>
171                 <configuration>
172                     <failOnError>true</failOnError>
173                 </configuration>
174             </plugin>
175         </plugins>
176     </build>
177     <scm>
178         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
179         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
180         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
181         <tag>HEAD</tag>
182     </scm>
183 </project>