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