Merge "Added DELETE support for Bridge and Port resources"
[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.2-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.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             <version>${netconf.netty.version}</version>
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                         </Export-Package>
75                         <Import-Package>
76                             org.opendaylight.controller.config.stat,
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                             org.opendaylight.controller.netconf.api,
97                             org.opendaylight.controller.netconf.mapping.api,
98                             org.opendaylight.protocol.framework,
99                             org.opendaylight.protocol.util,
100                             org.osgi.framework,
101                             org.slf4j,
102                             org.w3c.dom,
103                             org.xml.sax,
104                         </Import-Package>
105                     </instructions>
106                 </configuration>
107             </plugin>
108             <plugin>
109                 <groupId>org.apache.maven.plugins</groupId>
110                 <artifactId>maven-jar-plugin</artifactId>
111                 <version>2.4</version>
112                 <executions>
113                     <execution>
114                         <phase>package</phase>
115                         <goals>
116                             <goal>test-jar</goal>
117                         </goals>
118                     </execution>
119                 </executions>
120             </plugin>
121         </plugins>
122     </build>
123
124 </project>