b1090f35112cddd80442ca45a09f386fb3b352b7
[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.13.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <version>0.13.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>com.google.guava</groupId>
18       <artifactId>guava</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>commons-codec</groupId>
22       <artifactId>commons-codec</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>commons-lang</groupId>
26       <artifactId>commons-lang</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal</groupId>
30       <artifactId>mdsal-binding-api</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal</groupId>
34       <artifactId>mdsal-eos-dom-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.openflowplugin.libraries</groupId>
38       <artifactId>liblldp</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.openflowplugin</groupId>
43       <artifactId>openflowplugin-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin.model</groupId>
47       <artifactId>model-flow-base</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.openflowplugin.model</groupId>
51       <artifactId>model-flow-service</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-inventory</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller.model</groupId>
59       <artifactId>model-topology</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>javax.inject</groupId>
63       <artifactId>javax.inject</artifactId>
64       <optional>true</optional>
65     </dependency>
66     <dependency>
67       <groupId>javax.annotation</groupId>
68       <artifactId>javax.annotation-api</artifactId>
69       <optional>true</optional>
70     </dependency>
71     <dependency>
72       <groupId>org.apache.aries.blueprint</groupId>
73       <artifactId>blueprint-maven-plugin-annotation</artifactId>
74       <optional>true</optional>
75     </dependency>
76       <dependency>
77           <groupId>org.opendaylight.openflowplugin</groupId>
78           <artifactId>openflowplugin-common</artifactId>
79       </dependency>
80   </dependencies>
81
82   <build>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.aries.blueprint</groupId>
86         <artifactId>blueprint-maven-plugin</artifactId>
87       </plugin>
88     </plugins>
89   </build>
90
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
94     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
95     <tag>HEAD</tag>
96   </scm>
97
98 </project>