Fix transaction manager closing.
[openflowplugin.git] / openflowplugin-impl / 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.6.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin-impl</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19                 <extensions>true</extensions>
20                 <configuration>
21                     <instructions>
22                         <!-- This bundle works with Karaf 3 and 4.0 -->
23                         <Import-Package>
24                             org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
25                             org.apache.karaf.shell.console;version="[3.0.0,4.1)",
26                             *
27                         </Import-Package>
28                     </instructions>
29                 </configuration>
30             </plugin>
31         </plugins>
32     </build>
33     <dependencies>
34         <dependency>
35             <groupId>org.opendaylight.openflowplugin</groupId>
36             <artifactId>openflowplugin-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.openflowplugin</groupId>
40             <artifactId>openflowplugin</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.openflowplugin</groupId>
44             <artifactId>openflowplugin-extension-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.openflowplugin.model</groupId>
48             <artifactId>model-flow-base</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.openflowplugin.model</groupId>
52             <artifactId>model-flow-service</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.openflowplugin.model</groupId>
56             <artifactId>model-flow-statistics</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller.model</groupId>
60             <artifactId>model-inventory</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>sal-binding-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>sal-binding-broker-impl</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}.openflowjava</groupId>
72             <artifactId>openflow-protocol-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}.openflowjava</groupId>
76             <artifactId>openflow-protocol-spi</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.apache.karaf.shell</groupId>
80             <artifactId>org.apache.karaf.shell.console</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.google.guava</groupId>
84             <artifactId>guava</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.apache.commons</groupId>
88             <artifactId>commons-lang3</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>junit</groupId>
92             <artifactId>junit</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.mockito</groupId>
97             <artifactId>mockito-core</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.slf4j</groupId>
102             <artifactId>slf4j-log4j12</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.controller</groupId>
107             <artifactId>sal-common-util</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>${project.groupId}.openflowjava</groupId>
111             <artifactId>openflowjava-util</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.controller</groupId>
115             <artifactId>sal-common-api</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>${project.groupId}.openflowjava</groupId>
119             <artifactId>openflow-protocol-impl</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.osgi</groupId>
123             <artifactId>org.osgi.compendium</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.opendaylight.openflowplugin</groupId>
127             <artifactId>openflowplugin-common</artifactId>
128         </dependency>
129     </dependencies>
130 </project>
131