Bump odlparent to 5.0.0
[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.12.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         <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.osgi</groupId>
74             <artifactId>org.osgi.core</artifactId>
75             <scope>provided</scope>
76         </dependency>
77         <dependency>
78             <groupId>com.google.code.findbugs</groupId>
79             <artifactId>jsr305</artifactId>
80             <optional>true</optional>
81         </dependency>
82
83         <!-- Testing dependencies -->
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>pcep-tunnel-api</artifactId>
87             <version>${project.version}</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>testtool-util</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.mockito</groupId>
97             <artifactId>mockito-core</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.yangtools</groupId>
101             <artifactId>mockito-configuration</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-broker-impl</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.mdsal</groupId>
110             <artifactId>mdsal-binding-generator-impl</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.yangtools</groupId>
115             <artifactId>yang-model-api</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.yangtools</groupId>
120             <artifactId>yang-parser-api</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.mdsal</groupId>
125             <artifactId>mdsal-binding-dom-adapter</artifactId>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.mdsal</groupId>
130             <artifactId>mdsal-binding-dom-adapter</artifactId>
131             <scope>test</scope>
132             <type>test-jar</type>
133         </dependency>
134         <dependency>
135             <groupId>org.hamcrest</groupId>
136             <artifactId>hamcrest-core</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>org.opendaylight.yangtools</groupId>
140             <artifactId>yang-test-util</artifactId>
141         </dependency>
142     </dependencies>
143
144     <build>
145         <plugins>
146             <plugin>
147                 <groupId>org.apache.felix</groupId>
148                 <artifactId>maven-bundle-plugin</artifactId>
149                 <extensions>true</extensions>
150                 <configuration>
151                     <instructions>
152                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
153                         <Export-Package>
154                             org.opendaylight.bgpcep.programming.impl,
155                             org.opendaylight.controller.config.yang.programming.impl
156                             ;-split-package:=error
157                         </Export-Package>
158                     </instructions>
159                 </configuration>
160             </plugin>
161             <plugin>
162                 <groupId>org.apache.maven.plugins</groupId>
163                 <artifactId>maven-jar-plugin</artifactId>
164                 <executions>
165                     <execution>
166                         <phase>package</phase>
167                         <goals>
168                             <goal>test-jar</goal>
169                         </goals>
170                     </execution>
171                 </executions>
172             </plugin>
173         </plugins>
174     </build>
175
176     <scm>
177         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
178         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
179         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
180         <tag>HEAD</tag>
181     </scm>
182 </project>