Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / applications / lldp-speaker / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3          xmlns="http://maven.apache.org/POM/4.0.0"
4          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.openflowplugin</groupId>
8         <artifactId>applications</artifactId>
9         <version>0.5.0-SNAPSHOT</version>
10     </parent>
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>lldp-speaker</artifactId>
13     <packaging>bundle</packaging>
14     <dependencies>
15         <dependency>
16             <groupId>org.opendaylight.openflowplugin</groupId>
17             <artifactId>openflowplugin-api</artifactId>
18         </dependency>
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>sal-binding-api</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal-binding-config</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-broker-impl</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller.model</groupId>
33             <artifactId>model-inventory</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.openflowplugin.model</groupId>
37             <artifactId>model-flow-service</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin</groupId>
41             <artifactId>openflowplugin-common</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>config-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>liblldp</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.openflowplugin.applications</groupId>
53             <artifactId>topology-lldp-discovery</artifactId>
54         </dependency>
55
56         <!-- Test dependencies -->
57         <dependency>
58             <groupId>org.mockito</groupId>
59             <artifactId>mockito-core</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <groupId>org.opendaylight.yangtools</groupId>
73                 <artifactId>yang-maven-plugin</artifactId>
74             </plugin>
75         </plugins>
76     </build>
77 </project>