Use Magnesium controller
[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.4</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.14.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</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.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>5.0.9</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.9.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                 <configuration>
83                     <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
84                     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
85                 </configuration>
86                 <reportSets>
87                     <reportSet>
88                         <reports>
89                             <report>dependency-info</report>
90                             <report>license</report>
91                         </reports>
92                     </reportSet>
93                 </reportSets>
94             </plugin>
95             <plugin>
96                 <groupId>org.apache.maven.plugins</groupId>
97                 <artifactId>maven-jxr-plugin</artifactId>
98                 <version>3.0.0</version>
99                 <configuration>
100                     <aggregate>true</aggregate>
101                     <linkJavadoc>true</linkJavadoc>
102                 </configuration>
103             </plugin>
104             <plugin>
105                 <groupId>com.github.spotbugs</groupId>
106                 <artifactId>spotbugs-maven-plugin</artifactId>
107                 <configuration>
108                     <effort>Max</effort>
109                     <threshold>Low</threshold>
110                     <goal>site</goal>
111                 </configuration>
112             </plugin>
113             <plugin>
114                 <groupId>org.codehaus.mojo</groupId>
115                 <artifactId>jdepend-maven-plugin</artifactId>
116             </plugin>
117         </plugins>
118     </reporting>
119
120     <build>
121         <plugins>
122             <plugin>
123                 <groupId>org.apache.maven.plugins</groupId>
124                 <artifactId>maven-compiler-plugin</artifactId>
125                 <configuration>
126                     <source>${java.version.source}</source>
127                     <target>${java.version.target}</target>
128                     <testSource>${java.version.source}</testSource>
129                     <testTarget>${java.version.target}</testTarget>
130                     <showDeprecation>true</showDeprecation>
131                     <showWarnings>true</showWarnings>
132                     <optimize>true</optimize>
133                 </configuration>
134             </plugin>
135             <plugin>
136                 <groupId>org.apache.maven.plugins</groupId>
137                 <artifactId>maven-surefire-plugin</artifactId>
138                 <configuration>
139                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
140                     <runOrder>alphabetical</runOrder>
141                     <threadCount>1</threadCount>
142                 </configuration>
143             </plugin>
144             <plugin>
145                 <groupId>org.apache.maven.plugins</groupId>
146                 <artifactId>maven-dependency-plugin</artifactId>
147                 <executions>
148                     <execution>
149                         <id>analyze</id>
150                         <goals>
151                             <goal>analyze-only</goal>
152                         </goals>
153                         <configuration>
154                             <failOnWarning>true</failOnWarning>
155                             <ignoreNonCompile>true</ignoreNonCompile>
156                         </configuration>
157                     </execution>
158                 </executions>
159             </plugin>
160         </plugins>
161     </build>
162     <scm>
163         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
164         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
165         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
166         <tag>HEAD</tag>
167     </scm>
168 </project>