Bump odlparent to 5.0.0
[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.12.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-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-rib-spi</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>bgp-openconfig-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>bgp-openconfig-spi</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>bgp-concepts</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>yang-common</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding-spec-util</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.yangtools</groupId>
56             <artifactId>concepts</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-binding-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>sal-common-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-data-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>mdsal-common-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
76             <artifactId>rfc6991-ietf-yang-types</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
80             <artifactId>rfc6991-ietf-inet-types</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.google.guava</groupId>
84             <artifactId>guava</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>com.google.code.findbugs</groupId>
88             <artifactId>jsr305</artifactId>
89             <optional>true</optional>
90         </dependency>
91         <!-- test scope dependencies -->
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>sal-core-api</artifactId>
95             <scope>test</scope>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.controller</groupId>
99             <artifactId>sal-core-spi</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.controller</groupId>
104             <artifactId>sal-inmemory-datastore</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>bgp-rib-spi</artifactId>
110             <scope>test</scope>
111             <type>test-jar</type>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.infrautils</groupId>
115             <artifactId>infrautils-testutils</artifactId>
116             <version>1.6.0-SNAPSHOT</version>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>${project.groupId}</groupId>
121             <artifactId>testtool-util</artifactId>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>sal-binding-broker-impl</artifactId>
127             <scope>test</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.controller</groupId>
131             <artifactId>sal-binding-broker-impl</artifactId>
132             <scope>test</scope>
133             <type>test-jar</type>
134         </dependency>
135         <dependency>
136             <groupId>org.opendaylight.mdsal</groupId>
137             <artifactId>mdsal-dom-api</artifactId>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.mockito</groupId>
142             <artifactId>mockito-core</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>org.opendaylight.yangtools</groupId>
146             <artifactId>mockito-configuration</artifactId>
147         </dependency>
148     </dependencies>
149
150     <build>
151         <plugins>
152             <plugin>
153                 <groupId>org.apache.felix</groupId>
154                 <artifactId>maven-bundle-plugin</artifactId>
155                 <extensions>true</extensions>
156                 <configuration>
157                     <instructions>
158                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
159                         <Export-Package>
160                             org.opendaylight.protocol.bgp.state.impl.*,
161                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.state.config.rev161107.*,
162                             ;-split-package:=error
163                         </Export-Package>
164                     </instructions>
165                 </configuration>
166             </plugin>
167         </plugins>
168     </build>
169
170     <scm>
171         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
172         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
173         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
174         <tag>HEAD</tag>
175     </scm>
176 </project>