d623dd979646e8f724f7abdefc9ce287a528a9fa
[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     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.felix</groupId>
59                 <artifactId>maven-bundle-plugin</artifactId>
60                 <configuration>
61                     <instructions>
62                         <Export-Package>
63                             org.opendaylight.controller.netconf.util,
64                             org.opendaylight.controller.netconf.util.xml,
65                             org.opendaylight.controller.netconf.util.osgi,
66                             org.opendaylight.controller.netconf.util.mapping,
67                             org.opendaylight.controller.netconf.util.messages,
68                             org.opendaylight.controller.netconf.util.handler,
69                             org.opendaylight.controller.netconf.util.handler.*,
70                         </Export-Package>
71                         <Import-Package>
72                             com.google.common.base,
73                             com.google.common.collect,
74                             ch.ethz.ssh2,
75                             io.netty.buffer,
76                             io.netty.channel,
77                             io.netty.channel.socket,
78                             io.netty.handler.codec,
79                             io.netty.handler.ssl,
80                             io.netty.util,
81                             io.netty.util.concurrent,
82                             javax.annotation,
83                             javax.net.ssl,
84                             javax.xml.namespace,
85                             javax.xml.parsers,
86                             javax.xml.transform,
87                             javax.xml.transform.dom,
88                             javax.xml.transform.stream,
89                             javax.xml.validation,
90                             javax.xml.xpath,
91                             javax.xml.transform.sax,
92                             org.opendaylight.controller.netconf.api,
93                             org.opendaylight.controller.netconf.mapping.api,
94                             org.opendaylight.protocol.framework,
95                             org.osgi.framework,
96                             org.slf4j,
97                             org.w3c.dom,
98                             org.xml.sax,
99                             org.xml.sax.helpers,
100                             org.opendaylight.controller.config.api,
101                         </Import-Package>
102                     </instructions>
103                 </configuration>
104             </plugin>
105             <plugin>
106                 <groupId>org.apache.maven.plugins</groupId>
107                 <artifactId>maven-jar-plugin</artifactId>
108                 <version>2.4</version>
109                 <executions>
110                     <execution>
111                         <phase>package</phase>
112                         <goals>
113                             <goal>test-jar</goal>
114                         </goals>
115                     </execution>
116                 </executions>
117             </plugin>
118         </plugins>
119     </build>
120
121 </project>