Fix transaction manager closing.
[openflowplugin.git] / openflowplugin-common / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7     <artifactId>openflowplugin-parent</artifactId>
8     <version>0.6.0-SNAPSHOT</version>
9     <relativePath>../parent</relativePath>
10   </parent>
11
12   <artifactId>openflowplugin-common</artifactId>
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       <plugin>
22         <groupId>org.apache.maven.plugins</groupId>
23         <artifactId>maven-checkstyle-plugin</artifactId>
24         <configuration>
25           <propertyExpansion>checkstyle.violationSeverity=warning</propertyExpansion>
26         </configuration>
27       </plugin>
28     </plugins>
29   </build>
30   <dependencies>
31     <dependency>
32       <groupId>com.google.guava</groupId>
33       <artifactId>guava</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.slf4j</groupId>
37       <artifactId>slf4j-api</artifactId>
38     </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>sal-binding-api</artifactId>
42         </dependency>
43
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.mockito</groupId>
51       <artifactId>mockito-core</artifactId>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.slf4j</groupId>
56       <artifactId>slf4j-log4j12</artifactId>
57       <scope>test</scope>
58     </dependency>
59   </dependencies>
60 </project>
61