Move ClusterAdminRpcService to its own bundle
[controller.git] / features / config-netty / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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.odlparent</groupId>
6     <artifactId>features-parent</artifactId>
7     <version>1.7.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>features-config-netty</artifactId>
13   <version>0.5.0-SNAPSHOT</version>
14   <packaging>jar</packaging>
15
16   <properties>
17     <config.version>0.5.0-SNAPSHOT</config.version>
18     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
19     <config.netty.configfile>00-netty.xml</config.netty.configfile>
20   </properties>
21
22   <dependencyManagement>
23     <dependencies>
24        <dependency>
25         <groupId>org.opendaylight.controller</groupId>
26         <artifactId>config-artifacts</artifactId>
27         <version>${config.version}</version>
28         <scope>import</scope>
29         <type>pom</type>
30       </dependency>
31     </dependencies>
32   </dependencyManagement>
33
34   <dependencies>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>features-config-persister</artifactId>
38       <classifier>features</classifier>
39       <type>xml</type>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>netty-event-executor-config</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>netty-threadgroup-config</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>netty-timer-config</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>threadpool-config-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>threadpool-config-impl</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>config-netty-config</artifactId>
64       <!--
65         note, the reason the type and classifier
66         are here instead of in opendaylight/commons/opendaylight/pom.xml
67         is because they are used as jars in distribution.
68       -->
69       <version>${config.version}</version>
70       <type>xml</type>
71       <classifier>config</classifier>
72     </dependency>
73   </dependencies>
74
75
76   <scm>
77     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
78     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
79     <tag>HEAD</tag>
80     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
81   </scm>
82 </project>