Fix warnings in topology-lldp-discovery
[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>openflowplugin-parent</artifactId>
7     <version>0.18.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>com.github.spotbugs</groupId>
17       <artifactId>spotbugs-annotations</artifactId>
18       <optional>true</optional>
19     </dependency>
20     <dependency>
21       <groupId>com.google.guava</groupId>
22       <artifactId>guava</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.mdsal</groupId>
26       <artifactId>mdsal-binding-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal.model</groupId>
30       <artifactId>ietf-topology</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
34       <artifactId>liblldp</artifactId>
35       <version>${project.version}</version>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.openflowplugin</groupId>
39       <artifactId>openflowplugin-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin.model</groupId>
43       <artifactId>model-flow-service</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin.model</groupId>
47       <artifactId>model-inventory</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>com.guicedee.services</groupId>
51       <artifactId>javax.inject</artifactId>
52       <optional>true</optional>
53     </dependency>
54     <dependency>
55       <groupId>jakarta.annotation</groupId>
56       <artifactId>jakarta.annotation-api</artifactId>
57       <optional>true</optional>
58     </dependency>
59   </dependencies>
60
61   <scm>
62     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
63     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
64     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
65     <tag>HEAD</tag>
66   </scm>
67
68 </project>