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