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