Bump mdsal to 3.0.3
[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>4.0.5</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.11.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.9.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>2.1.6</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>3.0.3</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>restconf-artifacts</artifactId>
70                 <version>1.9.0-SNAPSHOT</version>
71                 <type>pom</type>
72                 <scope>import</scope>
73             </dependency>
74
75             <dependency>
76                 <groupId>javax.xml.stream</groupId>
77                 <artifactId>stax-api</artifactId>
78                 <version>1.0-2</version>
79             </dependency>
80         </dependencies>
81     </dependencyManagement>
82
83     <reporting>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-project-info-reports-plugin</artifactId>
88                 <version>${projectinfo}</version>
89                 <configuration>
90                     <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
91                     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
92                 </configuration>
93                 <reportSets>
94                     <reportSet>
95                         <reports>
96                             <report>dependency-info</report>
97                             <report>license</report>
98                         </reports>
99                     </reportSet>
100                 </reportSets>
101             </plugin>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-jxr-plugin</artifactId>
105                 <version>2.5</version>
106                 <configuration>
107                     <aggregate>true</aggregate>
108                     <linkJavadoc>true</linkJavadoc>
109                 </configuration>
110             </plugin>
111             <plugin>
112                 <groupId>com.github.spotbugs</groupId>
113                 <artifactId>spotbugs-maven-plugin</artifactId>
114                 <configuration>
115                     <effort>Max</effort>
116                     <threshold>Low</threshold>
117                     <goal>site</goal>
118                 </configuration>
119             </plugin>
120             <plugin>
121                 <groupId>org.codehaus.mojo</groupId>
122                 <artifactId>jdepend-maven-plugin</artifactId>
123                 <version>2.0-beta-2</version>
124             </plugin>
125         </plugins>
126     </reporting>
127
128     <build>
129         <plugins>
130             <plugin>
131                 <groupId>org.apache.maven.plugins</groupId>
132                 <artifactId>maven-compiler-plugin</artifactId>
133                 <configuration>
134                     <source>${java.version.source}</source>
135                     <target>${java.version.target}</target>
136                     <testSource>${java.version.source}</testSource>
137                     <testTarget>${java.version.target}</testTarget>
138                     <showDeprecation>true</showDeprecation>
139                     <showWarnings>true</showWarnings>
140                     <optimize>true</optimize>
141                 </configuration>
142             </plugin>
143             <plugin>
144                 <groupId>org.apache.maven.plugins</groupId>
145                 <artifactId>maven-surefire-plugin</artifactId>
146                 <configuration>
147                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
148                     <runOrder>alphabetical</runOrder>
149                     <threadCount>1</threadCount>
150                 </configuration>
151             </plugin>
152             <plugin>
153                 <groupId>org.apache.maven.plugins</groupId>
154                 <artifactId>maven-dependency-plugin</artifactId>
155                 <executions>
156                     <execution>
157                         <id>analyze</id>
158                         <goals>
159                             <goal>analyze-only</goal>
160                         </goals>
161                         <configuration>
162                             <failOnWarning>true</failOnWarning>
163                             <ignoreNonCompile>true</ignoreNonCompile>
164                         </configuration>
165                     </execution>
166                 </executions>
167             </plugin>
168             <plugin>
169                 <groupId>org.apache.maven.plugins</groupId>
170                 <artifactId>maven-checkstyle-plugin</artifactId>
171                 <dependencies>
172                     <dependency>
173                         <groupId>org.opendaylight.yangtools</groupId>
174                         <artifactId>checkstyle-logging</artifactId>
175                         <version>2.1.6</version>
176                     </dependency>
177                 </dependencies>
178                 <configuration>
179                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
180                 </configuration>
181             </plugin>
182             <plugin>
183                 <groupId>com.github.spotbugs</groupId>
184                 <artifactId>spotbugs-maven-plugin</artifactId>
185                 <configuration>
186                     <failOnError>true</failOnError>
187                 </configuration>
188             </plugin>
189         </plugins>
190     </build>
191     <scm>
192         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
193         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
194         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
195         <tag>HEAD</tag>
196     </scm>
197 </project>