Updated openflowjava versions for stable branch
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowjava</groupId>
5         <artifactId>openflow-protocol-parent</artifactId>
6         <version>0.4-1-SNAPSHOT</version>
7     </parent>
8     <artifactId>openflow-protocol-impl</artifactId>
9     <packaging>bundle</packaging>
10     <name>Openflow Protocol Library - IMPL</name>
11     <scm>
12         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
13       <tag>HEAD</tag>
14   </scm>
15     
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.apache.felix</groupId>
20                 <artifactId>maven-bundle-plugin</artifactId>
21                 <configuration>
22                     <instructions>
23                         <Bundle-Activator>
24                           org.opendaylight.openflowjava.protocol.impl.connection.Activator
25                         </Bundle-Activator>
26                         <Export-Package>org.opendaylight.openflowjava.protocol.impl.*</Export-Package>
27                     </instructions>
28                 </configuration>
29             </plugin>
30         </plugins>
31     </build>
32     
33     <dependencies>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>openflow-protocol-api</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>openflow-protocol-spi</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.controller</groupId>
46             <artifactId>sal-common-util</artifactId>
47             <version>${yang.prototype.version}</version>
48             <exclusions>
49                 <exclusion>
50                     <groupId>org.opendaylight.controller</groupId>
51                     <artifactId>sal-common-api</artifactId>
52                 </exclusion>
53                 <exclusion>
54                     <groupId>org.opendaylight.yangtools</groupId>
55                     <artifactId>concepts</artifactId>
56                 </exclusion>
57             </exclusions>
58         </dependency>
59         <dependency>
60             <groupId>io.netty</groupId>
61             <artifactId>netty-handler</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.osgi</groupId>
65             <artifactId>org.osgi.core</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.slf4j</groupId>
69             <artifactId>slf4j-log4j12</artifactId>
70             <version>${slf4j.version}</version>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>com.google.guava</groupId>
75             <artifactId>guava</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-all</artifactId>
85         </dependency>
86     </dependencies>
87 </project>