Bump versions to 0.16.13-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.16.13-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-dom-api</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>mdsal-binding-runtime-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>com.google.guava</groupId>
73             <artifactId>guava</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.checkerframework</groupId>
77             <artifactId>checker-qual</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.osgi</groupId>
81             <artifactId>osgi.cmpn</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>javax.annotation</groupId>
85             <artifactId>javax.annotation-api</artifactId>
86             <scope>provided</scope>
87             <optional>true</optional>
88         </dependency>
89         <dependency>
90             <groupId>com.guicedee.services</groupId>
91             <artifactId>javax.inject</artifactId>
92             <optional>true</optional>
93         </dependency>
94
95         <!-- test scope dependencies -->
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>bgp-openconfig-api</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
103             <artifactId>rfc6991-ietf-inet-types</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
108             <artifactId>rfc6991-ietf-yang-types</artifactId>
109             <scope>test</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
113             <artifactId>rfc7223</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.yangtools</groupId>
118             <artifactId>mockito-configuration</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.opendaylight.yangtools</groupId>
122             <artifactId>yang-test-util</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     </dependencies>
142
143     <build>
144         <plugins>
145             <plugin>
146                 <artifactId>maven-jar-plugin</artifactId>
147                 <executions>
148                     <execution>
149                         <goals>
150                             <goal>test-jar</goal>
151                         </goals>
152                     </execution>
153                 </executions>
154             </plugin>
155             <plugin>
156                 <artifactId>maven-source-plugin</artifactId>
157                 <executions>
158                     <execution>
159                         <goals>
160                             <goal>test-jar-no-fork</goal>
161                         </goals>
162                     </execution>
163                 </executions>
164             </plugin>
165         </plugins>
166     </build>
167
168     <scm>
169         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
170         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
171         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
172         <tag>HEAD</tag>
173     </scm>
174 </project>