Release Oxygen
[bgpcep.git] / bmp / bmp-parser-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright (c) 2016 Brocade Communications Systems, Inc. and others.  All rights reserved.
4
5   This program and the accompanying materials are made available under the
6   terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>binding-parent</artifactId>
16         <version>0.9.4</version>
17         <relativePath>../../binding-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-bmp-parser-impl</artifactId>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>${project.groupId}</groupId>
31             <artifactId>bgp-bmp-api</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>bgp-bmp-spi</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal.model</groupId>
39             <artifactId>ietf-yang-types-20130715</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal.model</groupId>
43             <artifactId>ietf-inet-types-2013-07-15</artifactId>
44         </dependency>
45
46         <!-- test dependencies -->
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-parser-impl</artifactId>
54             <scope>test</scope>
55         </dependency>
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.maven.plugins</groupId>
62                 <artifactId>maven-checkstyle-plugin</artifactId>
63                 <configuration>
64                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
65                 </configuration>
66             </plugin>
67             <plugin>
68                 <groupId>org.codehaus.mojo</groupId>
69                 <artifactId>findbugs-maven-plugin</artifactId>
70                 <configuration>
71                     <failOnError>true</failOnError>
72                 </configuration>
73             </plugin>
74             <!-- test jar -->
75             <plugin>
76                 <groupId>org.apache.maven.plugins</groupId>
77                 <artifactId>maven-jar-plugin</artifactId>
78                 <executions>
79                     <execution>
80                         <goals>
81                             <goal>test-jar</goal>
82                         </goals>
83                         <phase>package</phase>
84                     </execution>
85                 </executions>
86             </plugin>
87         </plugins>
88     </build>
89
90     <scm>
91         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
92         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
93         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
94         <tag>HEAD</tag>
95     </scm>
96 </project>