Bump versions to 0.20.5-SNAPSHOT
[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.20.5-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     <properties>
25         <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
26     </properties>
27
28     <dependencies>
29         <dependency>
30             <groupId>com.google.guava</groupId>
31             <artifactId>guava</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>util</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>bgp-bmp-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>bgp-bmp-spi</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>bgp-concepts</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>bgp-parser-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-parser-spi</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>concepts</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
63             <artifactId>rfc6991-ietf-yang-types</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
67             <artifactId>rfc6991-ietf-inet-types</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.mdsal</groupId>
71             <artifactId>yang-binding</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>concepts</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-common</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.yangtools</groupId>
83             <artifactId>yang-common-netty</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>io.netty</groupId>
87             <artifactId>netty-buffer</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.osgi</groupId>
91             <artifactId>org.osgi.service.component.annotations</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>com.guicedee.services</groupId>
95             <artifactId>javax.inject</artifactId>
96             <optional>true</optional>
97         </dependency>
98         <dependency>
99             <groupId>org.kohsuke.metainf-services</groupId>
100             <artifactId>metainf-services</artifactId>
101         </dependency>
102
103         <!-- test dependencies -->
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>bgp-parser-impl</artifactId>
107             <scope>test</scope>
108         </dependency>
109     </dependencies>
110
111     <build>
112         <plugins>
113             <!-- test jar -->
114             <plugin>
115                 <artifactId>maven-jar-plugin</artifactId>
116                 <executions>
117                     <execution>
118                         <goals>
119                             <goal>test-jar</goal>
120                         </goals>
121                     </execution>
122                 </executions>
123             </plugin>
124             <plugin>
125                 <artifactId>maven-source-plugin</artifactId>
126                 <executions>
127                     <execution>
128                         <goals>
129                             <goal>test-jar-no-fork</goal>
130                         </goals>
131                     </execution>
132                 </executions>
133             </plugin>
134         </plugins>
135     </build>
136
137     <scm>
138         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
139         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
140         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
141         <tag>HEAD</tag>
142     </scm>
143 </project>