Bump versions by x.y.(z+1)
[openflowplugin.git] / extension / test-extension / pom.xml
1 <?xml version="1.0"?>
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-extension-parent</artifactId>
7     <version>0.9.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10   <artifactId>test-extension</artifactId>
11
12   <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19             </plugin>
20         </plugins>
21     </build>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.opendaylight.openflowplugin</groupId>
26             <artifactId>openflowplugin-extension-nicira</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.openflowplugin</groupId>
30             <artifactId>openflowplugin-extension-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.openflowplugin</groupId>
34             <artifactId>openflowjava-extension-nicira</artifactId>
35         </dependency>
36         <dependency>
37             <!-- configSubsystem yang should be moved to API and this would be doomed for removal -->
38             <groupId>org.opendaylight.openflowplugin</groupId>
39             <artifactId>openflowplugin</artifactId>
40         </dependency>
41
42         <!-- MD-SAL models -->
43         <dependency>
44             <groupId>org.opendaylight.openflowplugin.model</groupId>
45             <artifactId>model-flow-base</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.openflowplugin.model</groupId>
49             <artifactId>model-flow-service</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.openflowplugin.model</groupId>
53             <artifactId>model-flow-statistics</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller.model</groupId>
57             <artifactId>model-inventory</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.infrautils</groupId>
61             <artifactId>infrautils-util</artifactId>
62             <version>${infrautils.version}</version>
63         </dependency>
64
65         <!-- OpenFlowJava-API models -->
66         <dependency>
67             <groupId>${project.groupId}.openflowjava</groupId>
68             <artifactId>openflow-protocol-api</artifactId>
69         </dependency>
70     </dependencies>
71
72
73 </project>