1e3f4c402b7e2cf077b5d31c8869c302c31347e9
[netconf.git] / netconf / netconf-connector-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>bundle-parent</artifactId>
16         <version>2.0.4</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.netconf</groupId>
21     <artifactId>netconf-connector-config</artifactId>
22     <description>Configuration files for netconf-connector</description>
23     <version>1.3.0-SNAPSHOT</version>
24     <packaging>bundle</packaging>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.opendaylight.netconf</groupId>
30                 <artifactId>netconf-artifacts</artifactId>
31                 <version>${project.version}</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37
38     <dependencies>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>netconf-topology</artifactId>
42         </dependency>
43     </dependencies>
44
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.felix</groupId>
49                 <artifactId>maven-bundle-plugin</artifactId>
50                 <extensions>true</extensions>
51                 <configuration>
52                     <instructions>
53                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
54                         <Embed-Dependency>netconf-topology</Embed-Dependency>
55                     </instructions>
56                 </configuration>
57             </plugin>
58         </plugins>
59     </build>
60 </project>