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