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