Bump odlparent to 5.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.9.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       <optional>true</optional>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.felix</groupId>
53         <artifactId>maven-bundle-plugin</artifactId>
54         <extensions>true</extensions>
55         <configuration>
56           <instructions>
57             <Export-Package>
58               org.opendaylight.openflowplugin.libraries.liblldp
59             </Export-Package>
60           </instructions>
61         </configuration>
62       </plugin>
63     </plugins>
64   </build>
65
66   <scm>
67     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
68     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
69     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
70     <tag>HEAD</tag>
71   </scm>
72 </project>