e0d0874c8332dda20a6b3861f6a1b4a56f0958a5
[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.15.0-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>javax.inject</groupId>
91             <artifactId>javax.inject</artifactId>
92             <scope>provided</scope>
93             <optional>true</optional>
94         </dependency>
95
96         <!-- test scope dependencies -->
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>bgp-openconfig-api</artifactId>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
104             <artifactId>rfc6991-ietf-inet-types</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
109             <artifactId>rfc6991-ietf-yang-types</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
114             <artifactId>rfc7223</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.opendaylight.yangtools</groupId>
119             <artifactId>mockito-configuration</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.opendaylight.yangtools</groupId>
123             <artifactId>yang-test-util</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.mdsal</groupId>
128             <artifactId>mdsal-binding-test-utils</artifactId>
129             <scope>test</scope>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.mdsal</groupId>
133             <artifactId>mdsal-binding-dom-adapter</artifactId>
134             <scope>test</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.mdsal</groupId>
138             <artifactId>mdsal-binding-dom-adapter</artifactId>
139             <scope>test</scope>
140             <type>test-jar</type>
141         </dependency>
142     </dependencies>
143
144     <build>
145         <plugins>
146             <plugin>
147                 <artifactId>maven-jar-plugin</artifactId>
148                 <executions>
149                     <execution>
150                         <goals>
151                             <goal>test-jar</goal>
152                         </goals>
153                     </execution>
154                 </executions>
155             </plugin>
156             <plugin>
157                 <artifactId>maven-source-plugin</artifactId>
158                 <executions>
159                     <execution>
160                         <goals>
161                             <goal>test-jar-no-fork</goal>
162                         </goals>
163                     </execution>
164                 </executions>
165             </plugin>
166         </plugins>
167     </build>
168
169     <scm>
170         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
171         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
172         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
173         <tag>HEAD</tag>
174     </scm>
175 </project>