Remove import-package instructions from netconf
[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             <Export-Package>org.opendaylight.controller.netconf.util.*</Export-Package>
63           </instructions>
64         </configuration>
65       </plugin>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-jar-plugin</artifactId>
69         <executions>
70           <execution>
71             <goals>
72               <goal>test-jar</goal>
73             </goals>
74             <phase>package</phase>
75           </execution>
76         </executions>
77       </plugin>
78     </plugins>
79   </build>
80
81 </project>