Bump odlparent to 5.0.0
[openflowplugin.git] / applications / reconciliation-framework / 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>reconciliation-framework</artifactId>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>org.osgi</groupId>
16             <artifactId>org.osgi.core</artifactId>
17         </dependency>
18         <dependency>
19             <groupId>org.opendaylight.mdsal</groupId>
20             <artifactId>mdsal-binding-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.openflowplugin</groupId>
24             <artifactId>openflowplugin-common</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.openflowplugin</groupId>
28             <artifactId>openflowplugin-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-common</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.mdsal</groupId>
36             <artifactId>mdsal-singleton-common-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.openflowplugin.model</groupId>
40             <artifactId>model-flow-service</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal</groupId>
44             <artifactId>mdsal-binding-dom-adapter</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>mdsal-binding-dom-adapter</artifactId>
50             <scope>test</scope>
51             <type>test-jar</type>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.karaf.shell</groupId>
55             <artifactId>org.apache.karaf.shell.console</artifactId>
56             <scope>provided</scope>
57         </dependency>
58         <dependency>
59             <groupId>javax.inject</groupId>
60             <artifactId>javax.inject</artifactId>
61             <optional>true</optional>
62         </dependency>
63         <dependency>
64             <groupId>javax.annotation</groupId>
65             <artifactId>javax.annotation-api</artifactId>
66             <optional>true</optional>
67         </dependency>
68         <dependency>
69             <groupId>org.apache.aries.blueprint</groupId>
70             <artifactId>blueprint-maven-plugin-annotation</artifactId>
71             <optional>true</optional>
72         </dependency>
73         <dependency>
74             <groupId>com.google.code.findbugs</groupId>
75             <artifactId>jsr305</artifactId>
76             <optional>true</optional>
77         </dependency>
78     </dependencies>
79
80     <build>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.aries.blueprint</groupId>
84                 <artifactId>blueprint-maven-plugin</artifactId>
85             </plugin>
86         </plugins>
87     </build>
88     <scm>
89         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
90         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
91         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
92         <tag>HEAD</tag>
93     </scm>
94 </project>