Bump odlparent to 6.0.0
[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>libraries</artifactId>
8     <version>0.10.0-SNAPSHOT</version>
9   </parent>
10
11   <groupId>org.opendaylight.openflowplugin.libraries</groupId>
12   <artifactId>liblldp</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>javax.annotation</groupId>
18       <artifactId>javax.annotation-api</artifactId>
19       <optional>true</optional>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.commons</groupId>
23       <artifactId>commons-lang3</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.slf4j</groupId>
27       <artifactId>slf4j-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.slf4j</groupId>
31       <artifactId>slf4j-log4j12</artifactId>
32       <scope>test</scope>
33     </dependency>
34     <dependency>
35       <groupId>com.google.guava</groupId>
36       <artifactId>guava</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>javax.xml.bind</groupId>
40       <artifactId>jaxb-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>com.google.code.findbugs</groupId>
44       <artifactId>jsr305</artifactId>
45       <version>3.0.2</version>
46       <optional>true</optional>
47     </dependency>
48   </dependencies>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55         <extensions>true</extensions>
56         <configuration>
57           <instructions>
58             <Export-Package>
59               org.opendaylight.openflowplugin.libraries.liblldp
60             </Export-Package>
61           </instructions>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66
67   <scm>
68     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
69     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
70     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
71     <tag>HEAD</tag>
72   </scm>
73 </project>