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