Bump versions by x.y.(z+1)
[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.4-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>util</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>bgp-bmp-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>bgp-bmp-spi</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>bgp-concepts</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>bgp-parser-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-parser-spi</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>concepts</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal.model</groupId>
59             <artifactId>ietf-yang-types-20130715</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal.model</groupId>
63             <artifactId>ietf-inet-types-2013-07-15</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>yang-binding</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>concepts</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>io.netty</groupId>
75             <artifactId>netty-buffer</artifactId>
76         </dependency>
77         <!-- test dependencies -->
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>bgp-parser-impl</artifactId>
81             <scope>test</scope>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <!-- test jar -->
88             <plugin>
89                 <groupId>org.apache.maven.plugins</groupId>
90                 <artifactId>maven-jar-plugin</artifactId>
91                 <executions>
92                     <execution>
93                         <goals>
94                             <goal>test-jar</goal>
95                         </goals>
96                         <phase>package</phase>
97                     </execution>
98                 </executions>
99             </plugin>
100         </plugins>
101     </build>
102
103     <scm>
104         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
105         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
106         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
107         <tag>HEAD</tag>
108     </scm>
109 </project>