Bump versions to 0.16.7-SNAPSHOT
[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.16.7-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         <dependency>
37             <groupId>org.slf4j</groupId>
38             <artifactId>slf4j-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.google.guava</groupId>
42             <artifactId>guava</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>io.netty</groupId>
46             <artifactId>netty-common</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-common-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-binding-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>yang-binding</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-singleton-common-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.yangtools</groupId>
66             <artifactId>yang-common</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>concepts</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.checkerframework</groupId>
74             <artifactId>checker-qual</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.osgi</groupId>
78             <artifactId>osgi.cmpn</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>javax.annotation</groupId>
82             <artifactId>javax.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         <!-- Testing dependencies -->
93         <dependency>
94             <groupId>${project.groupId}</groupId>
95             <artifactId>pcep-tunnel-api</artifactId>
96             <version>${project.version}</version>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>testtool-util</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools</groupId>
106             <artifactId>mockito-configuration</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.mdsal</groupId>
110             <artifactId>mdsal-dom-broker</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.mdsal</groupId>
115             <artifactId>mdsal-binding-generator</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>yang-model-api</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.yangtools</groupId>
125             <artifactId>yang-parser-api</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal</groupId>
130             <artifactId>mdsal-binding-test-utils</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.opendaylight.mdsal</groupId>
135             <artifactId>mdsal-binding-dom-adapter</artifactId>
136             <scope>test</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.mdsal</groupId>
140             <artifactId>mdsal-binding-dom-adapter</artifactId>
141             <scope>test</scope>
142             <type>test-jar</type>
143         </dependency>
144         <dependency>
145             <groupId>org.hamcrest</groupId>
146             <artifactId>hamcrest-core</artifactId>
147         </dependency>
148         <dependency>
149             <groupId>org.opendaylight.yangtools</groupId>
150             <artifactId>yang-test-util</artifactId>
151         </dependency>
152     </dependencies>
153
154     <build>
155         <plugins>
156             <plugin>
157                 <groupId>org.apache.felix</groupId>
158                 <artifactId>maven-bundle-plugin</artifactId>
159                 <extensions>true</extensions>
160                 <configuration>
161                     <instructions>
162                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
163                         <Export-Package>
164                             org.opendaylight.bgpcep.programming.impl,
165                             org.opendaylight.controller.config.yang.programming.impl
166                             ;-split-package:=error
167                         </Export-Package>
168                     </instructions>
169                 </configuration>
170             </plugin>
171             <plugin>
172                 <artifactId>maven-jar-plugin</artifactId>
173                 <executions>
174                     <execution>
175                         <goals>
176                             <goal>test-jar</goal>
177                         </goals>
178                     </execution>
179                 </executions>
180             </plugin>
181             <plugin>
182                 <artifactId>maven-source-plugin</artifactId>
183                 <executions>
184                     <execution>
185                         <goals>
186                             <goal>test-jar-no-fork</goal>
187                         </goals>
188                     </execution>
189                 </executions>
190             </plugin>
191         </plugins>
192     </build>
193
194     <scm>
195         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
196         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
197         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
198         <tag>HEAD</tag>
199     </scm>
200 </project>