Bump versions by x.(y+1).z for next dev cycle
[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.7.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>topology-lldp-discovery</artifactId>
12   <version>0.5.0-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.opendaylight.controller</groupId>
42       <artifactId>sal-binding-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>sal-binding-config</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>liblldp</artifactId>
51       <version>0.13.0-SNAPSHOT</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.openflowplugin.model</groupId>
55       <artifactId>model-flow-base</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.openflowplugin.model</groupId>
59       <artifactId>model-flow-service</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller.model</groupId>
63       <artifactId>model-inventory</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>junit</groupId>
67       <artifactId>junit</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.mockito</groupId>
72       <artifactId>mockito-core</artifactId>
73       <scope>test</scope>
74     </dependency>
75
76
77   </dependencies>
78
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
82     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
83     <tag>HEAD</tag>
84   </scm>
85
86 </project>