Start 3.0.3-SNAPSHOT
[odlparent.git] / features / odl-netty-4 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016 Red Hat, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>single-feature-parent</artifactId>
17         <version>3.0.3-SNAPSHOT</version>
18         <relativePath>../../single-feature-parent</relativePath>
19     </parent>
20
21     <groupId>org.opendaylight.odlparent</groupId>
22     <artifactId>odl-netty-4</artifactId>
23     <version>3.0.3-SNAPSHOT</version>
24     <packaging>feature</packaging>
25
26     <name>OpenDaylight :: Netty</name>
27
28     <properties>
29         <checkDependencyChange>true</checkDependencyChange>
30         <failOnDependencyChange>true</failOnDependencyChange>
31     </properties>
32
33     <dependencies>
34         <dependency>
35             <groupId>io.netty</groupId>
36             <artifactId>netty-codec-http</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>io.netty</groupId>
40             <artifactId>netty-handler</artifactId>
41         </dependency>
42         <!-- Here we need to depend on all available native epoll implementations; we can't limit ourselves to the build
43         platform and we can't require the build platform to have an implementation (e.g. OS X) -->
44         <dependency>
45             <groupId>io.netty</groupId>
46             <artifactId>netty-transport-native-epoll</artifactId>
47             <classifier>linux-x86_64</classifier>
48         </dependency>
49
50         <!-- netty-common has an optional dependency on javassist, which boosts performance
51              of matchers. We want to force that dependency to be satisfied to prevent refreshes. -->
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>odl-javassist-3</artifactId>
55             <version>${project.version}</version>
56             <classifier>features</classifier>
57             <type>xml</type>
58         </dependency>
59     </dependencies>
60
61     <!--
62         Maven Site Configuration
63
64         The following configuration is necessary for maven-site-plugin to
65         correctly identify the correct deployment path for OpenDaylight Maven
66         sites.
67     -->
68     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
69
70     <distributionManagement>
71         <site>
72             <id>opendaylight-site</id>
73             <url>${nexus.site.url}/${project.artifactId}/</url>
74         </site>
75     </distributionManagement>
76
77 </project>