Merge "Added requuired-capabilities to the impl/.../config/default-config.xml and...
[controller.git] / opendaylight / netconf / ietf-netconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <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">
11     <modelVersion>4.0.0</modelVersion>
12     <parent>
13         <groupId>org.opendaylight.controller</groupId>
14         <artifactId>netconf-subsystem</artifactId>
15         <version>0.3.0-SNAPSHOT</version>
16     </parent>
17     <artifactId>ietf-netconf</artifactId>
18     <packaging>bundle</packaging>
19     <name>${project.artifactId}</name>
20
21     <dependencies>
22
23         <dependency>
24             <groupId>com.google.guava</groupId>
25             <artifactId>guava</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.yangtools.model</groupId>
29             <artifactId>ietf-inet-types</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35     </dependencies>
36
37     <build>
38         <plugins>
39
40             <plugin>
41                 <groupId>org.apache.felix</groupId>
42                 <artifactId>maven-bundle-plugin</artifactId>
43                 <configuration>
44                     <instructions>
45                         <Export-Package>org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.base._1._0.rev110601.*</Export-Package>
46                     </instructions>
47                 </configuration>
48             </plugin>
49             <plugin>
50                 <groupId>org.opendaylight.yangtools</groupId>
51                 <artifactId>yang-maven-plugin</artifactId>
52             </plugin>
53         </plugins>
54     </build>
55
56 </project>