Remove netconf from commons/opendaylight pom
[controller.git] / opendaylight / netconf / netconf-notifications-impl / 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"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <parent>
14         <artifactId>netconf-subsystem</artifactId>
15         <groupId>org.opendaylight.controller</groupId>
16         <version>0.4.0-SNAPSHOT</version>
17     </parent>
18     <modelVersion>4.0.0</modelVersion>
19     <packaging>bundle</packaging>
20     <artifactId>netconf-notifications-impl</artifactId>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>netconf-notifications-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>${project.groupId}</groupId>
29             <artifactId>netconf-util</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.yangtools</groupId>
33             <artifactId>binding-generator-impl</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.yangtools</groupId>
37             <artifactId>binding-data-codec</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.slf4j</groupId>
41             <artifactId>slf4j-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>xmlunit</groupId>
45             <artifactId>xmlunit</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.yangtools</groupId>
49             <artifactId>mockito-configuration</artifactId>
50         </dependency>
51     </dependencies>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.felix</groupId>
57                 <artifactId>maven-bundle-plugin</artifactId>
58                 <configuration>
59                     <instructions>
60                         <Bundle-Activator>org.opendaylight.controller.netconf.notifications.impl.osgi.Activator</Bundle-Activator>
61                         <Export-Package>org.opendaylight.controller.netconf.notifications.impl.*</Export-Package>
62                     </instructions>
63                 </configuration>
64             </plugin>
65             <plugin>
66                 <groupId>org.opendaylight.yangtools</groupId>
67                 <artifactId>yang-maven-plugin</artifactId>
68             </plugin>
69         </plugins>
70     </build>
71 </project>