Eliminate {infra,service}utils.version
[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.10.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>com.google.code.findbugs</groupId>
28       <artifactId>jsr305</artifactId>
29       <version>3.0.2</version>
30       <optional>true</optional>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal</groupId>
34       <artifactId>mdsal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.serviceutils</groupId>
38       <artifactId>srm-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.openflowplugin</groupId>
46       <artifactId>openflowplugin-common</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-common</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.mdsal</groupId>
54       <artifactId>mdsal-singleton-common-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.openflowplugin</groupId>
58       <artifactId>openflowplugin-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.openflowplugin.applications</groupId>
62       <artifactId>reconciliation-framework</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.infrautils</groupId>
66       <artifactId>infrautils-util</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.mdsal</groupId>
70       <artifactId>mdsal-binding-dom-adapter</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.mdsal</groupId>
75       <artifactId>mdsal-binding-dom-adapter</artifactId>
76       <scope>test</scope>
77       <type>test-jar</type>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.openflowplugin</groupId>
81       <artifactId>openflowplugin-extension-api</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>org.awaitility</groupId>
85       <artifactId>awaitility</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.openflowplugin.applications</groupId>
90       <artifactId>arbitratorreconciliation-api</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.apache.aries.blueprint</groupId>
94       <artifactId>blueprint-maven-plugin-annotation</artifactId>
95       <optional>true</optional>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.aries.blueprint</groupId>
103         <artifactId>blueprint-maven-plugin</artifactId>
104         <configuration>
105           <scanPaths>
106             <scanPath>org.opendaylight.openflowplugin.applications.frm</scanPath>
107           </scanPaths>
108         </configuration>
109       </plugin>
110     </plugins>
111   </build>
112
113   <scm>
114     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
115     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
116     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
117     <tag>HEAD</tag>
118   </scm>
119 </project>