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