Bump versions to 0.19.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.19.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>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-model-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>yang-data-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-data-impl</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.yangtools</groupId>
45             <artifactId>yang-common</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>yang-model-util</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>concepts</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>util</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>yang-data-codec-xml</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal</groupId>
65             <artifactId>mdsal-binding-runtime-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.google.guava</groupId>
69             <artifactId>guava</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.checkerframework</groupId>
73             <artifactId>checker-qual</artifactId>
74             <scope>provided</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.osgi</groupId>
78             <artifactId>org.osgi.service.component.annotations</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>jakarta.annotation</groupId>
82             <artifactId>jakarta.annotation-api</artifactId>
83             <scope>provided</scope>
84             <optional>true</optional>
85         </dependency>
86         <dependency>
87             <groupId>com.guicedee.services</groupId>
88             <artifactId>javax.inject</artifactId>
89             <optional>true</optional>
90         </dependency>
91
92         <!-- test scope dependencies -->
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>bgp-openconfig-api</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
100             <artifactId>rfc6991-ietf-inet-types</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
105             <artifactId>rfc6991-ietf-yang-types</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
110             <artifactId>rfc8343</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools</groupId>
115             <artifactId>mockito-configuration</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools</groupId>
119             <artifactId>yang-test-util</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.mdsal</groupId>
124             <artifactId>mdsal-dom-api</artifactId>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.mdsal</groupId>
129             <artifactId>mdsal-binding-test-utils</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.mdsal</groupId>
134             <artifactId>mdsal-binding-dom-adapter</artifactId>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.mdsal</groupId>
139             <artifactId>mdsal-binding-dom-adapter</artifactId>
140             <scope>test</scope>
141             <type>test-jar</type>
142         </dependency>
143     </dependencies>
144
145     <build>
146         <plugins>
147             <plugin>
148                 <artifactId>maven-jar-plugin</artifactId>
149                 <executions>
150                     <execution>
151                         <goals>
152                             <goal>test-jar</goal>
153                         </goals>
154                     </execution>
155                 </executions>
156             </plugin>
157             <plugin>
158                 <artifactId>maven-source-plugin</artifactId>
159                 <executions>
160                     <execution>
161                         <goals>
162                             <goal>test-jar-no-fork</goal>
163                         </goals>
164                     </execution>
165                 </executions>
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/display/ODL/BGPCEP</url>
174         <tag>HEAD</tag>
175     </scm>
176 </project>