Bump upstreams
[openflowplugin.git] / openflowjava / openflow-protocol-impl / pom.xml
1 <?xml version="1.0"?>
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.openflowjava</groupId>
6         <artifactId>openflowjava-parent</artifactId>
7         <version>0.17.0-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10     <artifactId>openflow-protocol-impl</artifactId>
11     <packaging>bundle</packaging>
12     <!-- <name> formatting is used by autorelease to parse and notify projects on
13          build failure. Please do not modify this unless you have a good reason. -->
14     <name>ODL :: openflowjava :: ${project.artifactId}</name>
15     <scm>
16         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
17       <tag>HEAD</tag>
18     </scm>
19
20     <build>
21         <plugins>
22             <plugin>
23               <groupId>org.apache.felix</groupId>
24               <artifactId>maven-bundle-plugin</artifactId>
25               <extensions>true</extensions>
26               <configuration>
27                 <instructions>
28                     <Export-Package>
29                       org.opendaylight.openflowjava.protocol.impl.*,
30                     </Export-Package>
31                 </instructions>
32               </configuration>
33             </plugin>
34             <plugin>
35                 <groupId>org.apache.maven.plugins</groupId>
36                 <artifactId>maven-jar-plugin</artifactId>
37                 <executions>
38                     <execution>
39                         <goals>
40                             <goal>test-jar</goal>
41                         </goals>
42                     </execution>
43                 </executions>
44             </plugin>
45         </plugins>
46     </build>
47
48     <dependencies>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>openflow-protocol-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>openflow-protocol-spi</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>openflowjava-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>io.netty</groupId>
63             <artifactId>netty-handler</artifactId>
64         </dependency>
65
66         <dependency>
67             <groupId>org.kohsuke.metainf-services</groupId>
68             <artifactId>metainf-services</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.github.spotbugs</groupId>
72             <artifactId>spotbugs-annotations</artifactId>
73             <optional>true</optional>
74         </dependency>
75         <dependency>
76             <groupId>com.guicedee.services</groupId>
77             <artifactId>javax.inject</artifactId>
78             <optional>true</optional>
79         </dependency>
80         <dependency>
81             <groupId>org.osgi</groupId>
82             <artifactId>org.osgi.service.component.annotations</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>jakarta.annotation</groupId>
86             <artifactId>jakarta.annotation-api</artifactId>
87             <scope>provided</scope>
88             <optional>true</optional>
89         </dependency>
90
91         <dependency>
92             <groupId>org.slf4j</groupId>
93             <artifactId>slf4j-simple</artifactId>
94             <scope>test</scope>
95         </dependency>
96
97         <dependency>
98             <groupId>org.opendaylight.infrautils</groupId>
99             <artifactId>infrautils-util</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>com.google.guava</groupId>
103             <artifactId>guava</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.infrautils</groupId>
107             <artifactId>diagstatus-api</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.yangtools</groupId>
111             <artifactId>yang-common-netty</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>io.netty</groupId>
115             <artifactId>netty-transport-classes-epoll</artifactId>
116         </dependency>
117
118         <dependency>
119             <groupId>io.netty</groupId>
120             <artifactId>netty-transport-native-epoll</artifactId>
121             <classifier>linux-x86_64</classifier>
122             <scope>test</scope>
123         </dependency>
124     </dependencies>
125 </project>