Merge "Bug 460 - Fix warning throughout netconf subsystem"
[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       <version>2.4</version>
32     </dependency>
33     <dependency>
34       <groupId>equinoxSDK381</groupId>
35       <artifactId>org.eclipse.osgi</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>sal</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>sal-binding-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller.model</groupId>
47       <artifactId>model-flow-base</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller.model</groupId>
51       <artifactId>model-flow-management</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-flow-service</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller.model</groupId>
59       <artifactId>model-inventory</artifactId>
60     </dependency>
61
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <extensions>true</extensions>
70         <configuration>
71           <instructions>
72             <Bundle-Activator>org.opendaylight.md.controller.topology.lldp.LLDPActivator</Bundle-Activator>
73             <Export-Package>org.opendaylight.md.controller.topology.lldp.utils</Export-Package>
74             <Embed-Dependency>commons-lang</Embed-Dependency>
75             &gt;
76             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
77           </instructions>
78           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83   <scm>
84     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
85     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
86     <tag>HEAD</tag>
87   </scm>
88 </project>