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