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