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