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