Make applications/pom.xml an aggregator
[openflowplugin.git] / applications / lldp-speaker / pom.xml
1 <?xml version="1.0"?>
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.10.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>lldp-speaker</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>javax.annotation</groupId>
18             <artifactId>javax.annotation-api</artifactId>
19             <optional>true</optional>
20         </dependency>
21         <dependency>
22             <groupId>com.google.code.findbugs</groupId>
23             <artifactId>jsr305</artifactId>
24             <version>3.0.2</version>
25             <optional>true</optional>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.openflowplugin</groupId>
29             <artifactId>openflowplugin-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.mdsal</groupId>
33             <artifactId>mdsal-binding-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.controller.model</groupId>
37             <artifactId>model-inventory</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin.model</groupId>
41             <artifactId>model-flow-service</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.openflowplugin</groupId>
45             <artifactId>openflowplugin-common</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.openflowplugin.libraries</groupId>
49             <artifactId>liblldp</artifactId>
50             <version>${project.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.openflowplugin.applications</groupId>
54             <artifactId>topology-lldp-discovery</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.openflowplugin.applications</groupId>
58             <artifactId>device-ownership-service</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62           <groupId>org.opendaylight.infrautils</groupId>
63           <artifactId>infrautils-util</artifactId>
64           <version>${infrautils.version}</version>
65         </dependency>
66     </dependencies>
67
68 </project>