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