Merge "BUG 1839 - HTTP delete of non existing data"
[controller.git] / opendaylight / netconf / netconf-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.3.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>netconf-util</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
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>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>io.netty</groupId>
30       <artifactId>netty-handler</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>config-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.osgi</groupId>
38       <artifactId>org.osgi.core</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.slf4j</groupId>
42       <artifactId>slf4j-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>xmlunit</groupId>
46       <artifactId>xmlunit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.yangtools</groupId>
51       <artifactId>mockito-configuration</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             <Import-Package>com.google.common.base, com.google.common.collect, io.netty.channel,
63               io.netty.util.concurrent, javax.annotation, javax.xml.namespace, javax.xml.parsers, javax.xml.transform,
64               javax.xml.transform.dom, javax.xml.transform.stream, javax.xml.validation, javax.xml.xpath,
65               org.opendaylight.controller.netconf.api, org.opendaylight.controller.netconf.api.xml,
66               org.opendaylight.controller.netconf.mapping.api,
67               org.osgi.framework, org.slf4j, org.w3c.dom, org.xml.sax,io.netty.channel.local</Import-Package>
68             <Export-Package>org.opendaylight.controller.netconf.util.*</Export-Package>
69           </instructions>
70         </configuration>
71       </plugin>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-jar-plugin</artifactId>
75         <executions>
76           <execution>
77             <goals>
78               <goal>test-jar</goal>
79             </goals>
80             <phase>package</phase>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85   </build>
86
87 </project>