Bump versions to 0.20.5-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.20.5-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             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.osgi</groupId>
79             <artifactId>org.osgi.service.component.annotations</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>jakarta.annotation</groupId>
83             <artifactId>jakarta.annotation-api</artifactId>
84             <scope>provided</scope>
85             <optional>true</optional>
86         </dependency>
87         <dependency>
88             <groupId>com.guicedee.services</groupId>
89             <artifactId>javax.inject</artifactId>
90             <optional>true</optional>
91         </dependency>
92
93         <!-- Testing dependencies -->
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>pcep-tunnel-api</artifactId>
97             <version>${project.version}</version>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>${project.groupId}</groupId>
102             <artifactId>testtool-util</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>mockito-configuration</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.mdsal</groupId>
111             <artifactId>mdsal-dom-broker</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.mdsal</groupId>
116             <artifactId>mdsal-binding-generator</artifactId>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools</groupId>
121             <artifactId>yang-model-api</artifactId>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.yangtools</groupId>
126             <artifactId>yang-parser-api</artifactId>
127             <scope>test</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.opendaylight.mdsal</groupId>
131             <artifactId>mdsal-binding-test-utils</artifactId>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.mdsal</groupId>
136             <artifactId>mdsal-binding-dom-adapter</artifactId>
137             <scope>test</scope>
138         </dependency>
139         <dependency>
140             <groupId>org.opendaylight.mdsal</groupId>
141             <artifactId>mdsal-binding-dom-adapter</artifactId>
142             <scope>test</scope>
143             <type>test-jar</type>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.yangtools</groupId>
147             <artifactId>yang-test-util</artifactId>
148         </dependency>
149     </dependencies>
150
151     <build>
152         <plugins>
153             <plugin>
154                 <groupId>org.apache.felix</groupId>
155                 <artifactId>maven-bundle-plugin</artifactId>
156                 <extensions>true</extensions>
157                 <configuration>
158                     <instructions>
159                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
160                         <Export-Package>
161                             org.opendaylight.bgpcep.programming.impl,
162                             org.opendaylight.controller.config.yang.programming.impl
163                             ;-split-package:=error
164                         </Export-Package>
165                     </instructions>
166                 </configuration>
167             </plugin>
168             <plugin>
169                 <artifactId>maven-jar-plugin</artifactId>
170                 <executions>
171                     <execution>
172                         <goals>
173                             <goal>test-jar</goal>
174                         </goals>
175                     </execution>
176                 </executions>
177             </plugin>
178             <plugin>
179                 <artifactId>maven-source-plugin</artifactId>
180                 <executions>
181                     <execution>
182                         <goals>
183                             <goal>test-jar-no-fork</goal>
184                         </goals>
185                     </execution>
186                 </executions>
187             </plugin>
188         </plugins>
189     </build>
190
191     <scm>
192         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
193         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
194         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
195         <tag>HEAD</tag>
196     </scm>
197 </project>