Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / applications / forwardingrules-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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7     <artifactId>applications</artifactId>
8     <version>0.8.0-SNAPSHOT</version>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>forwardingrules-manager</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>javax.inject</groupId>
17       <artifactId>javax.inject</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.serviceutils</groupId>
25       <artifactId>srm-api</artifactId>
26       <version>${serviceutils.version}</version>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.openflowplugin.model</groupId>
30       <artifactId>model-flow-service</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.openflowplugin</groupId>
34       <artifactId>openflowplugin-common</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.yangtools</groupId>
38       <artifactId>yang-common</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-common-util</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>mdsal-singleton-common-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.openflowplugin</groupId>
50       <artifactId>openflowplugin-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.openflowplugin.applications</groupId>
54       <artifactId>reconciliation-framework</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.infrautils</groupId>
59       <artifactId>infrautils-util</artifactId>
60       <version>${infrautils.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.mockito</groupId>
69       <artifactId>mockito-core</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller</groupId>
74       <artifactId>sal-binding-broker-impl</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>sal-binding-broker-impl</artifactId>
80       <scope>test</scope>
81       <type>test-jar</type>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.openflowplugin</groupId>
85       <artifactId>openflowplugin-extension-api</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.awaitility</groupId>
89       <artifactId>awaitility</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93     <groupId>org.opendaylight.openflowplugin.applications</groupId>
94       <artifactId>arbitratorreconciliation-api</artifactId>
95       <version>${project.version}</version>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <!-- TODO Remove this when we upgrade to odlparent with a fix for ODLPARENT-146 -->
102       <plugin>
103         <groupId>org.codehaus.mojo</groupId>
104         <artifactId>findbugs-maven-plugin</artifactId>
105         <configuration>
106           <failOnError>false</failOnError>
107         </configuration>
108       </plugin>
109     </plugins>
110   </build>
111
112   <scm>
113     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
114     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
115     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
116     <tag>HEAD</tag>
117   </scm>
118
119 </project>