Bump version of netconf-subsystem to 0.2.2-SNAPSHOT.
[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>${netconf.version}</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.bgpcep</groupId>
31             <artifactId>framework</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.bgpcep</groupId>
35             <artifactId>util</artifactId>
36         </dependency>
37
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.core</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.google.guava</groupId>
44             <artifactId>guava</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.slf4j</groupId>
48             <artifactId>slf4j-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>io.netty</groupId>
52             <artifactId>netty-handler</artifactId>
53         </dependency>
54     </dependencies>
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61                 <configuration>
62                     <instructions>
63                         <Export-Package>
64                             org.opendaylight.controller.netconf.util,
65                             org.opendaylight.controller.netconf.util.xml,
66                             org.opendaylight.controller.netconf.util.osgi,
67                             org.opendaylight.controller.netconf.util.mapping,
68                             org.opendaylight.controller.netconf.util.messages,
69                         </Export-Package>
70                         <Import-Package>
71                             org.opendaylight.controller.config.stat,
72                             com.google.common.base,
73                             com.google.common.collect,
74                             io.netty.buffer,
75                             io.netty.channel,
76                             io.netty.channel.socket,
77                             io.netty.handler.codec,
78                             io.netty.handler.ssl,
79                             io.netty.util,
80                             io.netty.util.concurrent,
81                             javax.annotation,
82                             javax.net.ssl,
83                             javax.xml.namespace,
84                             javax.xml.parsers,
85                             javax.xml.transform,
86                             javax.xml.transform.dom,
87                             javax.xml.transform.stream,
88                             javax.xml.validation,
89                             javax.xml.xpath,
90                             org.opendaylight.controller.netconf.api,
91                             org.opendaylight.controller.netconf.mapping.api,
92                             org.opendaylight.protocol.framework,
93                             org.opendaylight.protocol.util,
94                             org.osgi.framework,
95                             org.slf4j,
96                             org.w3c.dom,
97                             org.xml.sax,
98                         </Import-Package>
99                     </instructions>
100                 </configuration>
101             </plugin>
102             <plugin>
103                 <groupId>org.apache.maven.plugins</groupId>
104                 <artifactId>maven-jar-plugin</artifactId>
105                 <version>2.4</version>
106                 <executions>
107                     <execution>
108                         <phase>package</phase>
109                         <goals>
110                             <goal>test-jar</goal>
111                         </goals>
112                     </execution>
113                 </executions>
114             </plugin>
115         </plugins>
116     </build>
117
118 </project>