f71e93497fa099014d0e6fd6d6e547599d24ab62
[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   <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.openflowplugin.applications.topology.lldp.LLDPActivator</Bundle-Activator>
67             <Export-Package>org.opendaylight.openflowplugin.applications.topology.lldp.utils</Export-Package>
68             <Embed-Dependency>commons-lang</Embed-Dependency>
69             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70           </instructions>
71         </configuration>
72       </plugin>
73     </plugins>
74   </build>
75
76
77   <scm>
78     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
79     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
80     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
81     <tag>HEAD</tag>
82   </scm>
83
84 </project>