bump netty to version 4.0.10.Final
[controller.git] / opendaylight / netconf / netconf-impl / 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"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <parent>
6         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>0.2.1-SNAPSHOT</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>netconf-impl</artifactId>
12     <name>${project.artifactId}</name>
13     <packaging>bundle</packaging>
14
15
16     <dependencies>
17         <!-- compile dependencies -->
18         <dependency>
19             <groupId>${project.groupId}</groupId>
20             <artifactId>netconf-api</artifactId>
21             <version>${project.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>${project.groupId}</groupId>
25             <artifactId>netconf-util</artifactId>
26             <version>${project.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>config-util</artifactId>
31             <version>0.2.1-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>${project.groupId}</groupId>
35             <artifactId>netconf-mapping-api</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38
39         <dependency>
40             <groupId>org.opendaylight.bgpcep</groupId>
41             <artifactId>util</artifactId>
42             <version>${bgpcep.version}</version>
43         </dependency>
44
45         <dependency>
46             <groupId>org.opendaylight.bgpcep</groupId>
47             <artifactId>framework</artifactId>
48             <version>${bgpcep.version}</version>
49         </dependency>
50
51         <dependency>
52             <groupId>org.osgi</groupId>
53             <artifactId>org.osgi.core</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.google.guava</groupId>
57             <artifactId>guava</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.slf4j</groupId>
61             <artifactId>slf4j-api</artifactId>
62         </dependency>
63
64         <!-- test dependencies -->
65         <dependency>
66             <groupId>org.opendaylight.bgpcep</groupId>
67             <artifactId>mockito-configuration</artifactId>
68             <version>${bgpcep.version}</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>commons-io</groupId>
73             <artifactId>commons-io</artifactId>
74             <scope>test</scope>
75         </dependency>
76
77         <dependency>
78             <groupId>${project.groupId}</groupId>
79
80             <artifactId>yang-store-api</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>xmlunit</groupId>
85             <artifactId>xmlunit</artifactId>
86             <version>1.4</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>${project.groupId}</groupId>
91             <artifactId>netconf-util</artifactId>
92             <version>${project.version}</version>
93             <scope>test</scope>
94             <type>test-jar</type>
95         </dependency>
96         <dependency>
97             <groupId>${project.groupId}</groupId>
98             <artifactId>netconf-client</artifactId>
99             <version>${project.version}</version>
100             <scope>test</scope>
101         </dependency>
102     </dependencies>
103
104     <build>
105         <plugins>
106             <plugin>
107                 <groupId>org.apache.felix</groupId>
108                 <artifactId>maven-bundle-plugin</artifactId>
109                 <configuration>
110                     <instructions>
111                         <Bundle-Activator>org.opendaylight.controller.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
112                         <Import-Package>
113                             com.google.common.base,
114                             com.google.common.collect,
115                             io.netty.channel,
116                             io.netty.channel.socket,
117                             io.netty.util,
118                             io.netty.util.concurrent,
119                             javax.management,
120                             javax.net.ssl,
121                             javax.xml.namespace,
122                             javax.xml.xpath,
123                             org.opendaylight.controller.netconf.api,
124                             org.opendaylight.controller.netconf.api.jmx,
125                             org.opendaylight.controller.netconf.mapping.api,
126                             org.opendaylight.controller.netconf.util,
127                             org.opendaylight.controller.netconf.util.mapping,
128                             org.opendaylight.controller.netconf.util.osgi,
129                             org.opendaylight.controller.netconf.util.xml,
130                             org.opendaylight.protocol.framework,
131                             org.osgi.framework,
132                             org.osgi.util.tracker,
133                             org.slf4j,
134                             org.w3c.dom,
135                             org.xml.sax,
136                             org.opendaylight.controller.netconf.util.messages,
137                             org.opendaylight.controller.config.stat
138                         </Import-Package>
139                     </instructions>
140                 </configuration>
141             </plugin>
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-jar-plugin</artifactId>
145                 <version>2.4</version>
146             </plugin>
147         </plugins>
148     </build>
149
150
151 </project>