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.5.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-binding-config</artifactId>
22         </dependency>
23
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>sal-common-api</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.controller.model</groupId>
31             <artifactId>model-inventory</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.opendaylight.openflowplugin.model</groupId>
36             <artifactId>model-flow-service</artifactId>
37         </dependency>
38
39         <dependency>
40             <groupId>org.opendaylight.yangtools</groupId>
41             <artifactId>yang-common</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>concepts</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>sal-common-util</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-singleton-common-api</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>com.google.guava</groupId>
61             <artifactId>guava</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>org.slf4j</groupId>
66             <artifactId>slf4j-api</artifactId>
67         </dependency>
68
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-binding-broker-impl</artifactId>
72             <scope>test</scope>
73         </dependency>
74
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-binding-broker-impl</artifactId>
78             <scope>test</scope>
79             <type>test-jar</type>
80         </dependency>
81
82         <dependency>
83             <groupId>junit</groupId>
84             <artifactId>junit</artifactId>
85         </dependency>
86
87         <dependency>
88             <groupId>org.mockito</groupId>
89             <artifactId>mockito-core</artifactId>
90             <scope>test</scope>
91         </dependency>
92
93         <dependency>
94             <groupId>org.slf4j</groupId>
95             <artifactId>slf4j-log4j12</artifactId>
96             <scope>test</scope>
97         </dependency>
98
99         <dependency>
100             <groupId>org.codehaus.sonar-plugins.java</groupId>
101             <artifactId>sonar-jacoco-listeners</artifactId>
102             <version>${sonar-jacoco-listeners.version}</version>
103             <scope>test</scope>
104         </dependency>
105     </dependencies>
106
107     <build>
108         <resources>
109             <resource>
110                 <filtering>true</filtering>
111                 <directory>src/main/resources</directory>
112             </resource>
113         </resources>
114
115         <plugins>
116             <plugin>
117                 <groupId>org.apache.felix</groupId>
118                 <artifactId>maven-bundle-plugin</artifactId>
119             </plugin>
120             <plugin>
121                 <groupId>org.opendaylight.yangtools</groupId>
122                 <artifactId>yang-maven-plugin</artifactId>
123             </plugin>
124         </plugins>
125     </build>
126
127     <scm>
128         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
129         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
130         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
131         <tag>HEAD</tag>
132     </scm>
133
134 </project>