Bump versions to 0.20.4-SNAPSHOT
[bgpcep.git] / bgp / openconfig-rp-spi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2018 AT&T Intellectual Property. 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xmlns="http://maven.apache.org/POM/4.0.0"
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>bgpcep-parent</artifactId>
16         <version>0.20.4-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-openconfig-rp-spi</artifactId>
21     <description>BGP Openconfig Routing Policy Spi</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>bgp-concepts</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>bgp-openconfig-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-parser-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.github.spotbugs</groupId>
44             <artifactId>spotbugs-annotations</artifactId>
45             <optional>true</optional>
46         </dependency>
47         <dependency>
48             <groupId>com.google.guava</groupId>
49             <artifactId>guava</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.checkerframework</groupId>
53             <artifactId>checker-qual</artifactId>
54             <scope>provided</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.eclipse.jdt</groupId>
58             <artifactId>org.eclipse.jdt.annotation</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>yang-binding</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
66             <artifactId>rfc6991-ietf-inet-types</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>concepts</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.yangtools</groupId>
74             <artifactId>yang-common</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>com.guicedee.services</groupId>
78             <artifactId>javax.inject</artifactId>
79             <optional>true</optional>
80         </dependency>
81         <dependency>
82             <groupId>jakarta.annotation</groupId>
83             <artifactId>jakarta.annotation-api</artifactId>
84             <scope>provided</scope>
85             <optional>true</optional>
86         </dependency>
87         <dependency>
88             <groupId>org.osgi</groupId>
89             <artifactId>org.osgi.service.component.annotations</artifactId>
90         </dependency>
91
92         <!-- Tests-->
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>config-loader-impl</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>config-loader-impl</artifactId>
101             <type>test-jar</type>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>routing-policy-config-loader</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}</groupId>
111             <artifactId>routing-policy-config-loader</artifactId>
112             <type>test-jar</type>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.mdsal</groupId>
117             <artifactId>mdsal-common-api</artifactId>
118             <scope>test</scope>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.mdsal</groupId>
122             <artifactId>mdsal-binding-api</artifactId>
123             <scope>test</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.mdsal</groupId>
127             <artifactId>mdsal-binding-test-utils</artifactId>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.mdsal</groupId>
132             <artifactId>mdsal-binding-dom-adapter</artifactId>
133             <scope>test</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.opendaylight.mdsal</groupId>
137             <artifactId>mdsal-binding-dom-adapter</artifactId>
138             <scope>test</scope>
139             <type>test-jar</type>
140         </dependency>
141         <dependency>
142             <groupId>${project.groupId}</groupId>
143             <artifactId>testtool-util</artifactId>
144             <scope>test</scope>
145         </dependency>
146     </dependencies>
147
148     <build>
149         <plugins>
150             <plugin>
151                 <artifactId>maven-jar-plugin</artifactId>
152                 <executions>
153                     <execution>
154                         <goals>
155                             <goal>test-jar</goal>
156                         </goals>
157                     </execution>
158                 </executions>
159             </plugin>
160             <plugin>
161                 <artifactId>maven-source-plugin</artifactId>
162                 <executions>
163                     <execution>
164                         <goals>
165                             <goal>test-jar-no-fork</goal>
166                         </goals>
167                     </execution>
168                 </executions>
169             </plugin>
170         </plugins>
171     </build>
172
173     <scm>
174         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
175         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
176         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
177         <tag>HEAD</tag>
178     </scm>
179 </project>