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