Merge "Initial message bus implementation"
[controller.git] / opendaylight / md-sal / topology-lldp-discovery / 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>sal-parent</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <groupId>org.opendaylight.controller.md</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <packaging>bundle</packaging>
13   <properties>
14     <bundle.plugin.version>2.4.0</bundle.plugin.version>
15     <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
16   </properties>
17   <dependencies>
18     <dependency>
19       <groupId>com.google.guava</groupId>
20       <artifactId>guava</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>commons-codec</groupId>
24       <artifactId>commons-codec</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>commons-lang</groupId>
28       <artifactId>commons-lang</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>equinoxSDK381</groupId>
32       <artifactId>org.eclipse.osgi</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-binding-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>liblldp</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.controller.model</groupId>
44       <artifactId>model-flow-base</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller.model</groupId>
48       <artifactId>model-flow-service</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller.model</groupId>
52       <artifactId>model-inventory</artifactId>
53     </dependency>
54
55   </dependencies>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <extensions>true</extensions>
63         <configuration>
64           <instructions>
65             <Bundle-Activator>org.opendaylight.md.controller.topology.lldp.LLDPActivator</Bundle-Activator>
66             <Export-Package>org.opendaylight.md.controller.topology.lldp.utils</Export-Package>
67             <Embed-Dependency>commons-lang</Embed-Dependency>
68             &gt;
69             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70           </instructions>
71           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76   <scm>
77     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
78     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
79     <tag>HEAD</tag>
80   </scm>
81 </project>