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