Bump odlparent 2.0.4 to 2.0.5
[controller.git] / features / config-netty / odl-config-netty / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2016, 2017 Red Hat, Inc. and others.
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>2.0.5</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.controller</groupId>
22     <artifactId>odl-config-netty</artifactId>
23     <version>0.8.0-SNAPSHOT</version>
24     <packaging>feature</packaging>
25
26     <name>OpenDaylight :: Config-Netty</name>
27
28     <properties>
29         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
30         <config.netty.configfile>00-netty.xml</config.netty.configfile>
31     </properties>
32
33     <dependencyManagement>
34         <dependencies>
35             <dependency>
36                 <groupId>${project.groupId}</groupId>
37                 <artifactId>config-artifacts</artifactId>
38                 <version>${project.version}</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>odl-config-netty-config-api</artifactId>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>netty-event-executor-config</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>netty-threadgroup-config</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>netty-timer-config</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>threadpool-config-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>threadpool-config-impl</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>${project.groupId}</groupId>
74             <artifactId>odl-config-startup</artifactId>
75             <type>xml</type>
76             <classifier>features</classifier>
77         </dependency>
78         <dependency>
79             <!-- finalname="${config.configfile.directory}/${config.netty.configfile}" -->
80             <groupId>${project.groupId}</groupId>
81             <artifactId>config-netty-config</artifactId>
82             <version>${project.version}</version>
83             <type>xml</type>
84             <classifier>config</classifier>
85         </dependency>
86     </dependencies>
87
88 </project>