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