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