Release Oxygen
[bgpcep.git] / pcep / 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>binding-parent</artifactId>
18         <version>0.9.4</version>
19         <relativePath>../../binding-parent</relativePath>
20     </parent>
21
22     <artifactId>pcep-impl</artifactId>
23     <description>PCE Protocol Implementation</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>pcep-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-spi</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>pcep-base-parser</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>rsvp-api</artifactId>
43         </dependency>
44
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>concepts</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>util</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>testtool-util</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>io.netty</groupId>
60             <artifactId>netty-buffer</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>io.netty</groupId>
64             <artifactId>netty-codec</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>io.netty</groupId>
68             <artifactId>netty-common</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>io.netty</groupId>
72             <artifactId>netty-handler</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>io.netty</groupId>
76             <artifactId>netty-transport</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>io.netty</groupId>
80             <artifactId>netty-transport-native-epoll</artifactId>
81             <classifier>linux-x86_64</classifier>
82         </dependency>
83         <dependency>
84             <groupId>com.google.guava</groupId>
85             <artifactId>guava</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-api</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.mdsal.model</groupId>
93             <artifactId>ietf-inet-types-2013-07-15</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>yang-common</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.mdsal</groupId>
101             <artifactId>yang-binding</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.yangtools</groupId>
105             <artifactId>concepts</artifactId>
106         </dependency>
107
108         <dependency>
109             <groupId>org.opendaylight.controller</groupId>
110             <artifactId>config-api</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>netty-config-api</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.osgi</groupId>
118             <artifactId>org.osgi.core</artifactId>
119             <scope>provided</scope>
120         </dependency>
121
122         <!-- Test dependencies -->
123         <dependency>
124             <groupId>org.mockito</groupId>
125             <artifactId>mockito-core</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>junit</groupId>
129             <artifactId>junit</artifactId>
130         </dependency>
131
132         <dependency>
133             <groupId>org.opendaylight.controller</groupId>
134             <artifactId>config-manager</artifactId>
135             <type>test-jar</type>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>config-manager</artifactId>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.opendaylight.controller</groupId>
144             <artifactId>config-util</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>org.opendaylight.yangtools</groupId>
148             <artifactId>mockito-configuration</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.controller</groupId>
152             <artifactId>netty-threadgroup-config</artifactId>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.opendaylight.controller</groupId>
157             <artifactId>netty-timer-config</artifactId>
158             <scope>test</scope>
159         </dependency>
160         <dependency>
161             <groupId>${project.groupId}</groupId>
162             <artifactId>pcep-spi</artifactId>
163             <type>test-jar</type>
164             <scope>test</scope>
165         </dependency>
166     </dependencies>
167
168     <build>
169         <plugins>
170             <plugin>
171                 <groupId>org.apache.felix</groupId>
172                 <artifactId>maven-bundle-plugin</artifactId>
173                 <extensions>true</extensions>
174                 <configuration>
175                     <instructions>
176                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
177                         <Export-Package>
178                             org.opendaylight.protocol.pcep.impl.*,
179                             org.opendaylight.controller.config.yang.pcep.impl.*
180                             ;-split-package:=error
181                         </Export-Package>
182                     </instructions>
183                 </configuration>
184             </plugin>
185             <plugin>
186                 <groupId>org.apache.maven.plugins</groupId>
187                 <artifactId>maven-jar-plugin</artifactId>
188                 <executions>
189                     <execution>
190                         <phase>package</phase>
191                         <goals>
192                             <goal>test-jar</goal>
193                         </goals>
194                     </execution>
195                 </executions>
196             </plugin>
197         </plugins>
198     </build>
199
200     <scm>
201         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
202         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
203         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
204         <tag>HEAD</tag>
205     </scm>
206 </project>