Bump upstreams
[openflowplugin.git] / libraries / liblldp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7     <artifactId>openflowplugin-parent</artifactId>
8     <version>0.17.0-SNAPSHOT</version>
9     <relativePath>../../parent</relativePath>
10   </parent>
11
12   <groupId>org.opendaylight.openflowplugin.libraries</groupId>
13   <artifactId>liblldp</artifactId>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>com.github.spotbugs</groupId>
19       <artifactId>spotbugs-annotations</artifactId>
20       <optional>true</optional>
21     </dependency>
22     <dependency>
23       <groupId>com.google.guava</groupId>
24       <artifactId>guava</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>jakarta.xml.bind</groupId>
28       <artifactId>jakarta.xml.bind-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.commons</groupId>
32       <artifactId>commons-lang3</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.eclipse.jdt</groupId>
36       <artifactId>org.eclipse.jdt.annotation</artifactId>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Export-Package>
49               org.opendaylight.openflowplugin.libraries.liblldp
50             </Export-Package>
51           </instructions>
52         </configuration>
53       </plugin>
54     </plugins>
55   </build>
56
57   <scm>
58     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
59     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
60     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
61     <tag>HEAD</tag>
62   </scm>
63 </project>