Bump versions to 0.20.5-SNAPSHOT
[bgpcep.git] / config-loader / config-loader-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.bgpcep</groupId>
16         <artifactId>bgpcep-parent</artifactId>
17         <version>0.20.5-SNAPSHOT</version>
18         <relativePath>../../parent</relativePath>
19     </parent>
20
21     <artifactId>config-loader-impl</artifactId>
22     <description>BGPCEP Initial configuration Loader</description>
23     <packaging>bundle</packaging>
24     <name>${project.artifactId}</name>
25
26     <dependencies>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>config-loader-spi</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>com.github.spotbugs</groupId>
33             <artifactId>spotbugs-annotations</artifactId>
34             <optional>true</optional>
35         </dependency>
36         <dependency>
37             <groupId>com.google.guava</groupId>
38             <artifactId>guava</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.checkerframework</groupId>
42             <artifactId>checker-qual</artifactId>
43             <scope>provided</scope>
44         </dependency>
45         <dependency>
46             <groupId>org.eclipse.jdt</groupId>
47             <artifactId>org.eclipse.jdt.annotation</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>yang-model-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-data-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-data-impl</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-common</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-model-util</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>concepts</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>util</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.yangtools</groupId>
79             <artifactId>yang-data-codec-xml</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>mdsal-binding-runtime-api</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.osgi</groupId>
87             <artifactId>org.osgi.service.component.annotations</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>jakarta.annotation</groupId>
91             <artifactId>jakarta.annotation-api</artifactId>
92             <scope>provided</scope>
93             <optional>true</optional>
94         </dependency>
95         <dependency>
96             <groupId>com.guicedee.services</groupId>
97             <artifactId>javax.inject</artifactId>
98             <optional>true</optional>
99         </dependency>
100
101         <!-- test scope dependencies -->
102         <dependency>
103             <groupId>${project.groupId}</groupId>
104             <artifactId>bgp-openconfig-api</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
109             <artifactId>rfc6991-ietf-inet-types</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
114             <artifactId>rfc6991-ietf-yang-types</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
119             <artifactId>rfc8343</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.yangtools</groupId>
124             <artifactId>mockito-configuration</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.yangtools</groupId>
128             <artifactId>yang-test-util</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.mdsal</groupId>
133             <artifactId>mdsal-dom-api</artifactId>
134             <scope>test</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.mdsal</groupId>
138             <artifactId>mdsal-binding-test-utils</artifactId>
139             <scope>test</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.opendaylight.mdsal</groupId>
143             <artifactId>mdsal-binding-dom-adapter</artifactId>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.opendaylight.mdsal</groupId>
148             <artifactId>mdsal-binding-dom-adapter</artifactId>
149             <scope>test</scope>
150             <type>test-jar</type>
151         </dependency>
152     </dependencies>
153
154     <build>
155         <plugins>
156             <plugin>
157                 <artifactId>maven-jar-plugin</artifactId>
158                 <executions>
159                     <execution>
160                         <goals>
161                             <goal>test-jar</goal>
162                         </goals>
163                     </execution>
164                 </executions>
165             </plugin>
166             <plugin>
167                 <artifactId>maven-source-plugin</artifactId>
168                 <executions>
169                     <execution>
170                         <goals>
171                             <goal>test-jar-no-fork</goal>
172                         </goals>
173                     </execution>
174                 </executions>
175             </plugin>
176         </plugins>
177     </build>
178
179     <scm>
180         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
181         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
182         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
183         <tag>HEAD</tag>
184     </scm>
185 </project>