Bump odlparent to 5.0.0
[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       <version>${project.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.infrautils</groupId>
65       <artifactId>infrautils-util</artifactId>
66       <version>${infrautils.version}</version>
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       <version>${project.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.aries.blueprint</groupId>
95       <artifactId>blueprint-maven-plugin-annotation</artifactId>
96       <optional>true</optional>
97     </dependency>
98   </dependencies>
99
100   <build>
101     <plugins>
102       <plugin>
103         <groupId>org.apache.aries.blueprint</groupId>
104         <artifactId>blueprint-maven-plugin</artifactId>
105         <configuration>
106           <scanPaths>
107             <scanPath>org.opendaylight.openflowplugin.applications.frm</scanPath>
108           </scanPaths>
109         </configuration>
110       </plugin>
111     </plugins>
112   </build>
113
114   <scm>
115     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
116     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
117     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
118     <tag>HEAD</tag>
119   </scm>
120 </project>