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