Bump versions by x.(y+1).z
[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.15.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.guicedee.services</groupId>
72             <artifactId>javax.inject</artifactId>
73             <optional>true</optional>
74         </dependency>
75         <dependency>
76             <groupId>org.osgi</groupId>
77             <artifactId>org.osgi.service.component.annotations</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>javax.annotation</groupId>
81             <artifactId>javax.annotation-api</artifactId>
82             <scope>provided</scope>
83             <optional>true</optional>
84         </dependency>
85
86         <dependency>
87             <!-- FIXME: configure slf4j-simple instead -->
88             <groupId>org.slf4j</groupId>
89             <artifactId>slf4j-log4j12</artifactId>
90             <scope>test</scope>
91         </dependency>
92
93         <dependency>
94             <groupId>org.opendaylight.infrautils</groupId>
95             <artifactId>infrautils-util</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>com.google.guava</groupId>
99             <artifactId>guava</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.infrautils</groupId>
103             <artifactId>diagstatus-api</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>org.opendaylight.yangtools</groupId>
107             <artifactId>yang-common-netty</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>io.netty</groupId>
111             <artifactId>netty-transport-classes-epoll</artifactId>
112         </dependency>
113
114         <dependency>
115             <groupId>io.netty</groupId>
116             <artifactId>netty-transport-native-epoll</artifactId>
117             <classifier>linux-x86_64</classifier>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121 </project>