Merge "Removing { } from NormalizedNodeJsonBodyWriter"
[controller.git] / opendaylight / netconf / ietf-netconf-notifications / 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-notifications</artifactId>
18   <packaging>bundle</packaging>
19   <name>${project.artifactId}</name>
20
21   <dependencies>
22     <dependency>
23       <groupId>com.google.guava</groupId>
24       <artifactId>guava</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>ietf-netconf</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools.model</groupId>
32       <artifactId>ietf-yang-types</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.slf4j</groupId>
36       <artifactId>slf4j-api</artifactId>
37     </dependency>
38   </dependencies>
39
40   <build>
41     <plugins>
42
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <configuration>
47           <instructions>
48             <Export-Package>
49               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714.*,
50               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netmod.notification.rev080714.*,
51               org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.*
52             </Export-Package>
53           </instructions>
54         </configuration>
55       </plugin>
56       <plugin>
57         <groupId>org.opendaylight.yangtools</groupId>
58         <artifactId>yang-maven-plugin</artifactId>
59       </plugin>
60     </plugins>
61   </build>
62
63 </project>