Derive aggregators from odlparent-lite
[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.7.0-SNAPSHOT</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>com.google.code.findbugs</groupId>
88             <artifactId>jsr305</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.slf4j</groupId>
92             <artifactId>slf4j-api</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal.model</groupId>
96             <artifactId>ietf-inet-types-2013-07-15</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools</groupId>
100             <artifactId>yang-common</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.mdsal</groupId>
104             <artifactId>yang-binding</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.yangtools</groupId>
108             <artifactId>concepts</artifactId>
109         </dependency>
110
111         <dependency>
112             <groupId>org.opendaylight.controller</groupId>
113             <artifactId>config-api</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.controller</groupId>
117             <artifactId>netty-config-api</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.osgi</groupId>
121             <artifactId>org.osgi.core</artifactId>
122             <scope>provided</scope>
123         </dependency>
124
125         <!-- Test dependencies -->
126         <dependency>
127             <groupId>org.mockito</groupId>
128             <artifactId>mockito-core</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>junit</groupId>
132             <artifactId>junit</artifactId>
133         </dependency>
134
135         <dependency>
136             <groupId>org.opendaylight.controller</groupId>
137             <artifactId>config-manager</artifactId>
138             <type>test-jar</type>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.controller</groupId>
142             <artifactId>config-manager</artifactId>
143             <scope>test</scope>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>config-util</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.opendaylight.yangtools</groupId>
151             <artifactId>mockito-configuration</artifactId>
152         </dependency>
153         <dependency>
154             <groupId>org.opendaylight.controller</groupId>
155             <artifactId>netty-threadgroup-config</artifactId>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>org.opendaylight.controller</groupId>
160             <artifactId>netty-timer-config</artifactId>
161             <scope>test</scope>
162         </dependency>
163         <dependency>
164             <groupId>${project.groupId}</groupId>
165             <artifactId>pcep-spi</artifactId>
166             <type>test-jar</type>
167             <scope>test</scope>
168         </dependency>
169     </dependencies>
170
171     <build>
172         <plugins>
173             <plugin>
174                 <groupId>org.apache.felix</groupId>
175                 <artifactId>maven-bundle-plugin</artifactId>
176                 <extensions>true</extensions>
177                 <configuration>
178                     <instructions>
179                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
180                         <Export-Package>
181                             org.opendaylight.protocol.pcep.impl.*,
182                             org.opendaylight.controller.config.yang.pcep.impl.*
183                         </Export-Package>
184                     </instructions>
185                 </configuration>
186             </plugin>
187             <plugin>
188                 <groupId>org.apache.maven.plugins</groupId>
189                 <artifactId>maven-jar-plugin</artifactId>
190                 <executions>
191                     <execution>
192                         <phase>package</phase>
193                         <goals>
194                             <goal>test-jar</goal>
195                         </goals>
196                     </execution>
197                 </executions>
198             </plugin>
199         </plugins>
200     </build>
201
202     <scm>
203         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
204         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
205         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
206         <tag>HEAD</tag>
207     </scm>
208
209     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
210     <distributionManagement>
211         <site>
212             <id>opendaylight-site</id>
213             <url>${nexus.site.url}/${project.artifactId}/</url>
214         </site>
215     </distributionManagement>
216 </project>