Bump versions by x.(y+1).z for next dev cycle
[bgpcep.git] / bgp / openconfig-state / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco 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.9.0-SNAPSHOT</version>
17         <relativePath>../../binding-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-openconfig-state</artifactId>
21     <description>BGP Openconfig State</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-rib-spi</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.bgpcep</groupId>
32             <artifactId>bgp-openconfig-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.bgpcep</groupId>
36             <artifactId>bgp-openconfig-spi</artifactId>
37         </dependency>
38         <!-- test scope dependencies -->
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-rib-spi</artifactId>
42             <scope>test</scope>
43             <type>test-jar</type>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>testtool-util</artifactId>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.controller</groupId>
52             <artifactId>sal-binding-broker-impl</artifactId>
53             <scope>test</scope>
54             <type>test-jar</type>
55         </dependency>
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>mockito-configuration</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>junit</groupId>
66             <artifactId>junit</artifactId>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.felix</groupId>
74                 <artifactId>maven-bundle-plugin</artifactId>
75                 <extensions>true</extensions>
76                 <configuration>
77                     <instructions>
78                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79                         <Export-Package>
80                             org.opendaylight.protocol.bgp.state.impl.*,
81                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.state.config.rev161107.*,
82                             ;-split-package:=error
83                         </Export-Package>
84                     </instructions>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89
90     <scm>
91         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
92         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
93         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
94         <tag>HEAD</tag>
95     </scm>
96
97     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
98     <distributionManagement>
99         <site>
100             <id>opendaylight-site</id>
101             <url>${nexus.site.url}/${project.artifactId}/</url>
102         </site>
103     </distributionManagement>
104 </project>