Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / bgp / bmp-parser-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.bgpcep</groupId>
8         <artifactId>binding-parent</artifactId>
9         <version>0.9.0-SNAPSHOT</version>
10         <relativePath>../../binding-parent</relativePath>
11     </parent>
12
13     <artifactId>bgp-bmp-parser-impl</artifactId>
14     <packaging>bundle</packaging>
15     <name>${project.artifactId}</name>
16
17     <dependencies>
18         <dependency>
19             <groupId>com.google.guava</groupId>
20             <artifactId>guava</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>${project.groupId}</groupId>
24             <artifactId>bgp-bmp-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-bmp-spi</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal.model</groupId>
32             <artifactId>ietf-yang-types-20130715</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.mdsal.model</groupId>
36             <artifactId>ietf-inet-types-2013-07-15</artifactId>
37         </dependency>
38
39         <!-- test dependencies -->
40         <dependency>
41             <groupId>junit</groupId>
42             <artifactId>junit</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>bgp-parser-impl</artifactId>
47             <scope>test</scope>
48         </dependency>
49     </dependencies>
50
51     <build>
52         <plugins>
53             <!-- test jar -->
54             <plugin>
55                 <groupId>org.apache.maven.plugins</groupId>
56                 <artifactId>maven-jar-plugin</artifactId>
57                 <executions>
58                     <execution>
59                         <goals>
60                             <goal>test-jar</goal>
61                         </goals>
62                         <phase>package</phase>
63                     </execution>
64                 </executions>
65             </plugin>
66         </plugins>
67     </build>
68
69     <scm>
70         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
71         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
72         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
73         <tag>HEAD</tag>
74     </scm>
75
76     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
77     <distributionManagement>
78         <site>
79             <id>opendaylight-site</id>
80             <url>${nexus.site.url}/${project.artifactId}/</url>
81         </site>
82     </distributionManagement>
83 </project>