BUG 2820 - LLDP refactor
[controller.git] / opendaylight / commons / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath>../opendaylight</relativePath>
9   </parent>
10
11   <artifactId>liblldp</artifactId>
12   <version>0.9.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.apache.commons</groupId>
21       <artifactId>commons-lang3</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.slf4j</groupId>
25       <artifactId>slf4j-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-log4j12</artifactId>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>com.google.guava</groupId>
34       <artifactId>guava</artifactId>
35     </dependency>
36   </dependencies>
37
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.apache.felix</groupId>
42         <artifactId>maven-bundle-plugin</artifactId>
43         <extensions>true</extensions>
44         <configuration>
45           <instructions>
46             <Import-Package>org.slf4j,
47               org.apache.commons.lang3.*,
48               com.google.common.*
49             </Import-Package>
50             <Export-Package>
51               org.opendaylight.controller.liblldp</Export-Package>
52           </instructions>
53           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58   <scm>
59     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
60     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
61     <tag>HEAD</tag>
62     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
63   </scm>
64 </project>