BGPCEP-712: Enforce checkstyle under binding-parent
[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.10.0-SNAPSHOT</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             <!-- test jar -->
61             <plugin>
62                 <groupId>org.apache.maven.plugins</groupId>
63                 <artifactId>maven-jar-plugin</artifactId>
64                 <executions>
65                     <execution>
66                         <goals>
67                             <goal>test-jar</goal>
68                         </goals>
69                         <phase>package</phase>
70                     </execution>
71                 </executions>
72             </plugin>
73         </plugins>
74     </build>
75
76     <scm>
77         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
78         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
79         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
80         <tag>HEAD</tag>
81     </scm>
82 </project>