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