Bump versions by x.(y+1).z
[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>openflowplugin-parent</artifactId>
7         <version>0.15.0-SNAPSHOT</version>
8         <relativePath>../../parent</relativePath>
9     </parent>
10
11     <groupId>org.opendaylight.openflowplugin.applications</groupId>
12     <artifactId>forwardingrules-sync</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.mdsal</groupId>
18             <artifactId>mdsal-binding-api</artifactId>
19         </dependency>
20
21         <dependency>
22             <groupId>org.opendaylight.openflowplugin.model</groupId>
23             <artifactId>model-inventory</artifactId>
24         </dependency>
25
26         <dependency>
27             <groupId>org.opendaylight.openflowplugin.model</groupId>
28             <artifactId>model-flow-service</artifactId>
29         </dependency>
30
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>yang-common</artifactId>
34         </dependency>
35
36         <dependency>
37             <groupId>org.opendaylight.yangtools</groupId>
38             <artifactId>concepts</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>org.opendaylight.mdsal</groupId>
43             <artifactId>mdsal-singleton-common-api</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>com.google.guava</groupId>
48             <artifactId>guava</artifactId>
49         </dependency>
50
51         <dependency>
52             <groupId>org.opendaylight.mdsal</groupId>
53             <artifactId>mdsal-binding-test-utils</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>org.slf4j</groupId>
58             <artifactId>slf4j-log4j12</artifactId>
59             <scope>test</scope>
60         </dependency>
61
62         <dependency>
63             <groupId>org.sonarsource.java</groupId>
64             <artifactId>sonar-jacoco-listeners</artifactId>
65             <version>${sonar-jacoco-listeners.version}</version>
66             <scope>test</scope>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <resources>
72             <resource>
73                 <filtering>true</filtering>
74                 <directory>src/main/resources</directory>
75             </resource>
76         </resources>
77
78         <plugins>
79             <plugin>
80                 <groupId>org.apache.felix</groupId>
81                 <artifactId>maven-bundle-plugin</artifactId>
82             </plugin>
83         </plugins>
84     </build>
85
86     <scm>
87         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
88         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
89         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
90         <tag>HEAD</tag>
91     </scm>
92
93 </project>