Merge "Bug-835:Reserve ports should be logical ports"
[controller.git] / opendaylight / netconf / netconf-tcp / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2014 Cisco Systems, 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" 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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>netconf-subsystem</artifactId>
14     <version>0.2.5-SNAPSHOT</version>
15     <relativePath>../</relativePath>
16   </parent>
17   <artifactId>netconf-tcp</artifactId>
18   <packaging>bundle</packaging>
19   <name>${project.artifactId}</name>
20
21   <dependencies>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>netconf-api</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>netconf-util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>commons-io</groupId>
32       <artifactId>commons-io</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.slf4j</groupId>
36       <artifactId>slf4j-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.yangtools</groupId>
40       <artifactId>mockito-configuration</artifactId>
41       <scope>test</scope>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <configuration>
51           <instructions>
52             <Bundle-Activator>org.opendaylight.controller.netconf.tcp.osgi.NetconfTCPActivator</Bundle-Activator>
53             <Import-Package>com.google.common.base, io.netty.bootstrap, io.netty.channel, io.netty.channel.local,
54               io.netty.channel.nio, io.netty.channel.socket, io.netty.channel.socket.nio, io.netty.handler.logging,
55               io.netty.util.concurrent, org.opendaylight.controller.netconf.util.osgi, org.osgi.framework, org.slf4j</Import-Package>
56           </instructions>
57         </configuration>
58       </plugin>
59     </plugins>
60   </build>
61
62 </project>