Added support for switch idle state
[openflowjava.git] / openflow-protocol-impl / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          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.openflowjava</groupId>
6         <artifactId>openflow-protocol-parent</artifactId>
7         <version>0.1-SNAPSHOT</version>
8     </parent>
9     <artifactId>openflow-protocol-impl</artifactId>
10     <packaging>bundle</packaging>
11     <name>Openflow Protocol Library - IMPL</name>
12     
13     <build>
14         <plugins>
15             <plugin>
16                 <groupId>org.apache.felix</groupId>
17                 <artifactId>maven-bundle-plugin</artifactId>
18                 <configuration>
19                     <instructions>
20                         <Bundle-Activator>
21                           org.opendaylight.openflowjava.protocol.impl.connection.Activator
22                         </Bundle-Activator>
23                     </instructions>
24                 </configuration>
25             </plugin>
26             <plugin>
27                 <groupId>org.apache.maven.plugins</groupId>
28                 <artifactId>maven-jar-plugin</artifactId>
29                 <executions>
30                     <execution>
31                         <goals>
32                           <goal>test-jar</goal>
33                         </goals>
34                     </execution>
35                 </executions>
36             </plugin>
37         </plugins>
38     </build>
39     
40     <dependencies>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>openflow-protocol-api</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>openflow-protocol-spi</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-common-util</artifactId>
54             <version>${yang.prototype.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>io.netty</groupId>
58             <artifactId>netty-handler</artifactId>
59             <version>4.0.8.Final</version>
60         </dependency>
61         <dependency>
62             <groupId>org.osgi</groupId>
63             <artifactId>org.osgi.core</artifactId>
64             <version>5.0.0</version>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-log4j12</artifactId>
69             <version>${slf4j.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>com.google.guava</groupId>
73             <artifactId>guava</artifactId>
74             <version>14.0.1</version>
75         </dependency>
76         <dependency>
77             <groupId>junit</groupId>
78             <artifactId>junit</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.mockito</groupId>
83             <artifactId>mockito-all</artifactId>
84             <version>1.9.5</version>
85         </dependency>
86     </dependencies>
87 </project>