Update MRI projects for Aluminium
[openflowplugin.git] / applications / forwardingrules-manager / 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>forwardingrules-manager</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>javax.inject</groupId>
18       <artifactId>javax.inject</artifactId>
19       <optional>true</optional>
20     </dependency>
21     <dependency>
22       <groupId>javax.annotation</groupId>
23       <artifactId>javax.annotation-api</artifactId>
24       <optional>true</optional>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.mdsal</groupId>
28       <artifactId>mdsal-binding-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.serviceutils</groupId>
32       <artifactId>srm-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.openflowplugin.model</groupId>
36       <artifactId>model-flow-service</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.openflowplugin</groupId>
40       <artifactId>openflowplugin-common</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.yangtools</groupId>
44       <artifactId>yang-common</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.mdsal</groupId>
48       <artifactId>mdsal-singleton-common-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.openflowplugin</groupId>
52       <artifactId>openflowplugin-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.openflowplugin.applications</groupId>
56       <artifactId>reconciliation-framework</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.infrautils</groupId>
60       <artifactId>infrautils-util</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal</groupId>
64       <artifactId>mdsal-binding-dom-adapter</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal</groupId>
69       <artifactId>mdsal-binding-dom-adapter</artifactId>
70       <scope>test</scope>
71       <type>test-jar</type>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.openflowplugin</groupId>
75       <artifactId>openflowplugin-extension-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.awaitility</groupId>
79       <artifactId>awaitility</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.openflowplugin.applications</groupId>
84       <artifactId>arbitratorreconciliation-api</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.apache.aries.blueprint</groupId>
88       <artifactId>blueprint-maven-plugin-annotation</artifactId>
89       <optional>true</optional>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.mdsal</groupId>
93       <artifactId>mdsal-binding-runtime-spi</artifactId>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.mdsal</groupId>
98       <artifactId>mdsal-binding-generator-impl</artifactId>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102
103   <build>
104     <plugins>
105       <plugin>
106         <groupId>org.apache.aries.blueprint</groupId>
107         <artifactId>blueprint-maven-plugin</artifactId>
108         <configuration>
109           <scanPaths>
110             <scanPath>org.opendaylight.openflowplugin.applications.frm</scanPath>
111           </scanPaths>
112         </configuration>
113       </plugin>
114     </plugins>
115   </build>
116
117   <scm>
118     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
119     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
120     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
121     <tag>HEAD</tag>
122   </scm>
123 </project>