Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / applications / forwardingrules-sync / 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.openflowplugin</groupId>
6         <artifactId>applications</artifactId>
7         <version>0.8.0-SNAPSHOT</version>
8     </parent>
9     <groupId>org.opendaylight.openflowplugin.applications</groupId>
10     <artifactId>forwardingrules-sync</artifactId>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>org.opendaylight.controller</groupId>
16             <artifactId>sal-binding-api</artifactId>
17         </dependency>
18
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>sal-common-api</artifactId>
22         </dependency>
23
24         <dependency>
25             <groupId>org.opendaylight.controller.model</groupId>
26             <artifactId>model-inventory</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.openflowplugin.model</groupId>
31             <artifactId>model-flow-service</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-common</artifactId>
37         </dependency>
38
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>concepts</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>sal-common-util</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-singleton-common-api</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>com.google.guava</groupId>
56             <artifactId>guava</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>org.slf4j</groupId>
61             <artifactId>slf4j-api</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-binding-broker-impl</artifactId>
67             <scope>test</scope>
68         </dependency>
69
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal-binding-broker-impl</artifactId>
73             <scope>test</scope>
74             <type>test-jar</type>
75         </dependency>
76
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80         </dependency>
81
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-core</artifactId>
85             <scope>test</scope>
86         </dependency>
87
88         <dependency>
89             <groupId>org.slf4j</groupId>
90             <artifactId>slf4j-log4j12</artifactId>
91             <scope>test</scope>
92         </dependency>
93
94         <dependency>
95             <groupId>org.sonarsource.java</groupId>
96             <artifactId>sonar-jacoco-listeners</artifactId>
97             <version>${sonar-jacoco-listeners.version}</version>
98             <scope>test</scope>
99         </dependency>
100     </dependencies>
101
102     <build>
103         <resources>
104             <resource>
105                 <filtering>true</filtering>
106                 <directory>src/main/resources</directory>
107             </resource>
108         </resources>
109
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.felix</groupId>
113                 <artifactId>maven-bundle-plugin</artifactId>
114             </plugin>
115             <!-- TODO Remove this when we upgrade to odlparent with a fix for ODLPARENT-146 -->
116             <plugin>
117                 <groupId>org.codehaus.mojo</groupId>
118                 <artifactId>findbugs-maven-plugin</artifactId>
119                 <configuration>
120                     <failOnError>false</failOnError>
121                 </configuration>
122             </plugin>
123         </plugins>
124     </build>
125
126     <scm>
127         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
128         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
129         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
130         <tag>HEAD</tag>
131     </scm>
132
133 </project>