Merge "BUG-731: do not do String.toString()"
[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         <dependency>
62             <groupId>org.opendaylight.controller.thirdparty</groupId>
63             <artifactId>nagasena-rta</artifactId>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.felix</groupId>
71                 <artifactId>maven-bundle-plugin</artifactId>
72                 <configuration>
73                     <instructions>
74                         <Export-Package>
75                             org.opendaylight.controller.netconf.util,
76                             org.opendaylight.controller.netconf.util.xml,
77                             org.opendaylight.controller.netconf.util.osgi,
78                             org.opendaylight.controller.netconf.util.mapping,
79                             org.opendaylight.controller.netconf.util.messages,
80                             org.opendaylight.controller.netconf.util.handler,
81                             org.opendaylight.controller.netconf.util.handler.*,
82                         </Export-Package>
83                         <Import-Package>
84                             com.google.common.base,
85                             com.google.common.collect,
86                             ch.ethz.ssh2,
87                             io.netty.buffer,
88                             io.netty.channel,
89                             io.netty.channel.socket,
90                             io.netty.handler.codec,
91                             io.netty.handler.ssl,
92                             io.netty.util,
93                             io.netty.util.concurrent,
94                             javax.annotation,
95                             javax.net.ssl,
96                             javax.xml.namespace,
97                             javax.xml.parsers,
98                             javax.xml.transform,
99                             javax.xml.transform.dom,
100                             javax.xml.transform.stream,
101                             javax.xml.validation,
102                             javax.xml.xpath,
103                             javax.xml.transform.sax,
104                             org.opendaylight.controller.netconf.api,
105                             org.opendaylight.controller.netconf.mapping.api,
106                             org.opendaylight.protocol.framework,
107                             org.osgi.framework,
108                             org.slf4j,
109                             org.w3c.dom,
110                             org.xml.sax,
111                             org.xml.sax.helpers,
112                             org.opendaylight.controller.config.api,
113                             org.openexi.*,
114                         </Import-Package>
115                     </instructions>
116                 </configuration>
117             </plugin>
118             <plugin>
119                 <groupId>org.apache.maven.plugins</groupId>
120                 <artifactId>maven-jar-plugin</artifactId>
121                 <version>2.4</version>
122                 <executions>
123                     <execution>
124                         <phase>package</phase>
125                         <goals>
126                             <goal>test-jar</goal>
127                         </goals>
128                     </execution>
129                 </executions>
130             </plugin>
131         </plugins>
132     </build>
133
134 </project>