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