Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / applications / topology-manager / 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-manager</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>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-binding-config</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-binding-util</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.openflowplugin.model</groupId>
46       <artifactId>model-flow-service</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.openflowplugin</groupId>
50       <artifactId>openflowplugin-common</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller.model</groupId>
54       <artifactId>model-inventory</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller.model</groupId>
58       <artifactId>model-topology</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>junit</groupId>
62       <artifactId>junit</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.mockito</groupId>
67       <artifactId>mockito-core</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>slf4j-log4j12</artifactId>
73       <scope>test</scope>
74     </dependency>
75   </dependencies>
76   <scm>
77     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
78     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
79     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
80     <tag>HEAD</tag>
81   </scm>
82
83
84 </project>