Remove unnecessary declaration of <prerequisites> in features
[controller.git] / opendaylight / netconf / netconf-api / 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-api</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>ietf-netconf-monitoring</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>ietf-netconf-monitoring-extension</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>config-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>protocol-framework</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.yangtools.model</groupId>
33       <artifactId>ietf-inet-types</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.yangtools.model</groupId>
37       <artifactId>ietf-yang-types</artifactId>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <configuration>
47           <instructions>
48             <Private-Package></Private-Package>
49             <Export-Package>org.opendaylight.controller.netconf.api,
50                             org.opendaylight.controller.netconf.api.jmx,
51                             org.opendaylight.controller.netconf.api.xml,
52                             org.opendaylight.controller.netconf.api.monitoring,</Export-Package>
53           </instructions>
54         </configuration>
55       </plugin>
56     </plugins>
57   </build>
58
59 </project>