Clean 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"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>binding-parent</artifactId>
18         <version>0.20.5-SNAPSHOT</version>
19         <relativePath>../../binding-parent</relativePath>
20     </parent>
21
22     <artifactId>pcep-impl</artifactId>
23     <description>PCE Protocol Implementation</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <properties>
28         <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
29     </properties>
30
31     <dependencies>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>pcep-spi</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>pcep-base-parser</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>${project.groupId}</groupId>
46             <artifactId>rsvp-api</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>concepts</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>util</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>testtool-util</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>com.github.spotbugs</groupId>
64             <artifactId>spotbugs-annotations</artifactId>
65             <optional>true</optional>
66         </dependency>
67         <dependency>
68             <groupId>io.netty</groupId>
69             <artifactId>netty-buffer</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>io.netty</groupId>
73             <artifactId>netty-codec</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>io.netty</groupId>
77             <artifactId>netty-common</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>io.netty</groupId>
81             <artifactId>netty-handler</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>io.netty</groupId>
85             <artifactId>netty-transport</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>io.netty</groupId>
89             <artifactId>netty-transport-classes-epoll</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>io.netty</groupId>
93             <artifactId>netty-transport-native-epoll</artifactId>
94             <classifier>linux-x86_64</classifier>
95         </dependency>
96         <dependency>
97             <groupId>com.google.guava</groupId>
98             <artifactId>guava</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.eclipse.jdt</groupId>
102             <artifactId>org.eclipse.jdt.annotation</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
106             <artifactId>rfc6991-ietf-inet-types</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools</groupId>
110             <artifactId>yang-common</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.yangtools</groupId>
114             <artifactId>concepts</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.osgi</groupId>
118             <artifactId>org.osgi.service.component.annotations</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.osgi</groupId>
122             <artifactId>org.osgi.service.metatype.annotations</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>jakarta.annotation</groupId>
126             <artifactId>jakarta.annotation-api</artifactId>
127             <scope>provided</scope>
128             <optional>true</optional>
129         </dependency>
130         <dependency>
131             <groupId>com.guicedee.services</groupId>
132             <artifactId>javax.inject</artifactId>
133             <optional>true</optional>
134         </dependency>
135         <dependency>
136             <groupId>org.kohsuke.metainf-services</groupId>
137             <artifactId>metainf-services</artifactId>
138         </dependency>
139
140         <!-- Test dependencies -->
141         <dependency>
142             <groupId>org.opendaylight.yangtools</groupId>
143             <artifactId>mockito-configuration</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>${project.groupId}</groupId>
147             <artifactId>pcep-spi</artifactId>
148             <type>test-jar</type>
149             <scope>test</scope>
150         </dependency>
151     </dependencies>
152
153     <build>
154         <plugins>
155             <plugin>
156                 <groupId>org.apache.felix</groupId>
157                 <artifactId>maven-bundle-plugin</artifactId>
158                 <extensions>true</extensions>
159                 <configuration>
160                     <instructions>
161                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
162                         <Export-Package>
163                             org.opendaylight.protocol.pcep.impl.*
164                             ;-split-package:=error
165                         </Export-Package>
166                     </instructions>
167                 </configuration>
168             </plugin>
169             <plugin>
170                 <artifactId>maven-jar-plugin</artifactId>
171                 <executions>
172                     <execution>
173                         <goals>
174                             <goal>test-jar</goal>
175                         </goals>
176                     </execution>
177                 </executions>
178             </plugin>
179             <plugin>
180                 <artifactId>maven-source-plugin</artifactId>
181                 <executions>
182                     <execution>
183                         <goals>
184                             <goal>test-jar-no-fork</goal>
185                         </goals>
186                     </execution>
187                 </executions>
188             </plugin>
189         </plugins>
190     </build>
191
192     <scm>
193         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
194         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
195         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
196         <tag>HEAD</tag>
197     </scm>
198 </project>