4e58605b530554f87ef1fe295bcdde0a6d2e4d25
[netconf.git] / netconf / mdsal-netconf-notification / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 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 <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">
10     <modelVersion>4.0.0</modelVersion>
11     <parent>
12         <groupId>org.opendaylight.netconf</groupId>
13         <artifactId>netconf-parent</artifactId>
14         <version>1.6.0-SNAPSHOT</version>
15         <relativePath>../netconf-parent</relativePath>
16     </parent>
17
18     <groupId>org.opendaylight.netconf</groupId>
19     <artifactId>mdsal-netconf-notification</artifactId>
20     <version>1.6.0-SNAPSHOT</version>
21     <name>${project.artifactId}</name>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <!-- compile dependencies -->
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>netconf-mapping-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>netconf-notifications-impl</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>netconf-notifications-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal</groupId>
40             <artifactId>mdsal-binding-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>sal-common-util</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.slf4j</groupId>
49             <artifactId>slf4j-api</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>com.google.guava</groupId>
53             <artifactId>guava</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.yangtools</groupId>
57             <artifactId>mockito-configuration</artifactId>
58         </dependency>
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <groupId>org.apache.felix</groupId>
65                 <artifactId>maven-bundle-plugin</artifactId>
66                 <extensions>true</extensions>
67                 <configuration>
68                     <instructions>
69                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
70                         <Embed-Dependency>netconf-notifications-impl</Embed-Dependency>
71                     </instructions>
72                 </configuration>
73             </plugin>
74         </plugins>
75     </build>
76 </project>