BUG-472: Add EXI codecs without wiring them
[controller.git] / opendaylight / netconf / netconf-util / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3
4     <parent>
5         <artifactId>netconf-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.5-SNAPSHOT</version>
8     </parent>
9     <artifactId>netconf-util</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13
14     <dependencies>
15         <!-- compile dependencies -->
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>netconf-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>netconf-mapping-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>config-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>protocol-framework</artifactId>
31         </dependency>
32
33         <dependency>
34             <groupId>org.osgi</groupId>
35             <artifactId>org.osgi.core</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.google.guava</groupId>
39             <artifactId>guava</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>io.netty</groupId>
47             <artifactId>netty-handler</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller.thirdparty</groupId>
51             <artifactId>ganymed</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>xmlunit</groupId>
55             <artifactId>xmlunit</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller.thirdparty</groupId>
59             <artifactId>nagasena</artifactId>
60         </dependency>
61     </dependencies>
62
63     <build>
64         <plugins>
65             <plugin>
66                 <groupId>org.apache.felix</groupId>
67                 <artifactId>maven-bundle-plugin</artifactId>
68                 <configuration>
69                     <instructions>
70                         <Export-Package>
71                             org.opendaylight.controller.netconf.util,
72                             org.opendaylight.controller.netconf.util.xml,
73                             org.opendaylight.controller.netconf.util.osgi,
74                             org.opendaylight.controller.netconf.util.mapping,
75                             org.opendaylight.controller.netconf.util.messages,
76                             org.opendaylight.controller.netconf.util.handler,
77                             org.opendaylight.controller.netconf.util.handler.*,
78                         </Export-Package>
79                         <Import-Package>
80                             com.google.common.base,
81                             com.google.common.collect,
82                             ch.ethz.ssh2,
83                             io.netty.buffer,
84                             io.netty.channel,
85                             io.netty.channel.socket,
86                             io.netty.handler.codec,
87                             io.netty.handler.ssl,
88                             io.netty.util,
89                             io.netty.util.concurrent,
90                             javax.annotation,
91                             javax.net.ssl,
92                             javax.xml.namespace,
93                             javax.xml.parsers,
94                             javax.xml.transform,
95                             javax.xml.transform.dom,
96                             javax.xml.transform.stream,
97                             javax.xml.validation,
98                             javax.xml.xpath,
99                             javax.xml.transform.sax,
100                             org.opendaylight.controller.netconf.api,
101                             org.opendaylight.controller.netconf.mapping.api,
102                             org.opendaylight.protocol.framework,
103                             org.osgi.framework,
104                             org.slf4j,
105                             org.w3c.dom,
106                             org.xml.sax,
107                             org.xml.sax.helpers,
108                             org.opendaylight.controller.config.api,
109                         </Import-Package>
110                     </instructions>
111                 </configuration>
112             </plugin>
113             <plugin>
114                 <groupId>org.apache.maven.plugins</groupId>
115                 <artifactId>maven-jar-plugin</artifactId>
116                 <version>2.4</version>
117                 <executions>
118                     <execution>
119                         <phase>package</phase>
120                         <goals>
121                             <goal>test-jar</goal>
122                         </goals>
123                     </execution>
124                 </executions>
125             </plugin>
126         </plugins>
127     </build>
128
129 </project>