Bump versions by x.(y+1).z
[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.16.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>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.binding.model.ietf</groupId>
59             <artifactId>rfc6991-ietf-yang-types</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
63             <artifactId>rfc6991-ietf-inet-types</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>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-common</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-common-netty</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>io.netty</groupId>
83             <artifactId>netty-buffer</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.kohsuke.metainf-services</groupId>
87             <artifactId>metainf-services</artifactId>
88         </dependency>
89
90         <!-- test dependencies -->
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>bgp-parser-impl</artifactId>
94             <scope>test</scope>
95         </dependency>
96     </dependencies>
97
98     <build>
99         <plugins>
100             <!-- test jar -->
101             <plugin>
102                 <artifactId>maven-jar-plugin</artifactId>
103                 <executions>
104                     <execution>
105                         <goals>
106                             <goal>test-jar</goal>
107                         </goals>
108                     </execution>
109                 </executions>
110             </plugin>
111             <plugin>
112                 <artifactId>maven-source-plugin</artifactId>
113                 <executions>
114                     <execution>
115                         <goals>
116                             <goal>test-jar-no-fork</goal>
117                         </goals>
118                     </execution>
119                 </executions>
120             </plugin>
121         </plugins>
122     </build>
123
124     <scm>
125         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
126         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
127         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
128         <tag>HEAD</tag>
129     </scm>
130 </project>