BUG-9223:Remove hardcoded value of lldp interval
[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.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.5.5-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <version>0.3.5-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencyManagement>
16     <dependencies>
17       <dependency>
18         <groupId>org.opendaylight.openflowplugin</groupId>
19         <artifactId>openflowplugin-artifacts</artifactId>
20         <version>${project.version}</version>
21         <type>pom</type>
22         <scope>import</scope>
23       </dependency>
24     </dependencies>
25   </dependencyManagement>
26
27   <dependencies>
28     <dependency>
29       <groupId>com.google.guava</groupId>
30       <artifactId>guava</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>commons-codec</groupId>
34       <artifactId>commons-codec</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>commons-lang</groupId>
38       <artifactId>commons-lang</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.eclipse.tycho</groupId>
42       <artifactId>org.eclipse.osgi</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>sal-binding-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-config</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>liblldp</artifactId>
55       <version>0.11.5-SNAPSHOT</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.openflowplugin.model</groupId>
59       <artifactId>model-flow-base</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.openflowplugin.model</groupId>
63       <artifactId>model-flow-service</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller.model</groupId>
67       <artifactId>model-inventory</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.mockito</groupId>
76       <artifactId>mockito-all</artifactId>
77       <scope>test</scope>
78     </dependency>
79
80
81   </dependencies>
82
83   <scm>
84     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
85     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
86     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
87     <tag>HEAD</tag>
88   </scm>
89
90 </project>