BGPCEP-712: Enforce checkstyle under binding-parent
[bgpcep.git] / programming / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 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
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>bgpcep-parent</artifactId>
18         <version>0.10.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>programming-impl</artifactId>
23     <packaging>bundle</packaging>
24     <description>Programming Implementation</description>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>programming-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>programming-spi</artifactId>
35         </dependency>
36
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>sal-binding-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>io.netty</groupId>
51             <artifactId>netty-common</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>yang-binding</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-common</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.yangtools</groupId>
64             <artifactId>concepts</artifactId>
65         </dependency>
66
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>config-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-common-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-binding-config</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>netty-config-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.osgi</groupId>
85             <artifactId>org.osgi.core</artifactId>
86             <scope>provided</scope>
87         </dependency>
88
89         <!-- Testing dependencies -->
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>pcep-tunnel-api</artifactId>
93             <version>${project.version}</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>testtool-util</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>junit</groupId>
103             <artifactId>junit</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>config-manager</artifactId>
108             <type>test-jar</type>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.controller</groupId>
112             <artifactId>config-manager</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.controller</groupId>
117             <artifactId>config-util</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.mockito</groupId>
121             <artifactId>mockito-core</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.yangtools</groupId>
125             <artifactId>mockito-configuration</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.controller</groupId>
129             <artifactId>netty-timer-config</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.controller</groupId>
134             <artifactId>sal-broker-impl</artifactId>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.mdsal</groupId>
139             <artifactId>mdsal-binding-generator-impl</artifactId>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.opendaylight.yangtools</groupId>
144             <artifactId>yang-model-api</artifactId>
145             <scope>test</scope>
146         </dependency>
147         <dependency>
148             <groupId>org.opendaylight.yangtools</groupId>
149             <artifactId>yang-parser-api</artifactId>
150             <scope>test</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.opendaylight.controller</groupId>
154             <artifactId>sal-binding-broker-impl</artifactId>
155             <scope>test</scope>
156         </dependency>
157         <dependency>
158             <groupId>org.opendaylight.controller</groupId>
159             <artifactId>sal-binding-broker-impl</artifactId>
160             <scope>test</scope>
161             <type>test-jar</type>
162         </dependency>
163         <dependency>
164             <groupId>org.hamcrest</groupId>
165             <artifactId>hamcrest-core</artifactId>
166             <scope>test</scope>
167         </dependency>
168         <dependency>
169             <groupId>org.opendaylight.controller</groupId>
170             <artifactId>sal-dom-broker-config</artifactId>
171             <scope>test</scope>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.yangtools</groupId>
175             <artifactId>yang-test-util</artifactId>
176         </dependency>
177     </dependencies>
178
179     <build>
180         <plugins>
181             <plugin>
182                 <groupId>org.apache.felix</groupId>
183                 <artifactId>maven-bundle-plugin</artifactId>
184                 <extensions>true</extensions>
185                 <configuration>
186                     <instructions>
187                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
188                         <Export-Package>
189                             org.opendaylight.bgpcep.programming.impl,
190                             org.opendaylight.controller.config.yang.programming.impl
191                             ;-split-package:=error
192                         </Export-Package>
193                     </instructions>
194                 </configuration>
195             </plugin>
196             <plugin>
197                 <groupId>org.apache.maven.plugins</groupId>
198                 <artifactId>maven-jar-plugin</artifactId>
199                 <executions>
200                     <execution>
201                         <phase>package</phase>
202                         <goals>
203                             <goal>test-jar</goal>
204                         </goals>
205                     </execution>
206                 </executions>
207             </plugin>
208             <plugin>
209                 <groupId>org.opendaylight.yangtools</groupId>
210                 <artifactId>yang-maven-plugin</artifactId>
211             </plugin>
212         </plugins>
213     </build>
214
215     <scm>
216         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
217         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
218         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
219         <tag>HEAD</tag>
220     </scm>
221 </project>