Release netconf
[netconf.git] / netconf / netconf-topology-impl / 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.13.4</version>
15         <relativePath>../../parent</relativePath>
16     </parent>
17
18     <groupId>org.opendaylight.netconf</groupId>
19     <artifactId>netconf-topology-impl</artifactId>
20     <version>1.13.4</version>
21     <description>Simple NETCONF topology</description>
22     <packaging>bundle</packaging>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.opendaylight.netconf</groupId>
28                 <artifactId>netconf-artifacts</artifactId>
29                 <version>${project.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35
36     <dependencies>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>netconf-topology</artifactId>
40         </dependency>
41     </dependencies>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.codehaus.mojo</groupId>
47                 <artifactId>build-helper-maven-plugin</artifactId>
48                 <executions>
49                     <execution>
50                         <id>attach-artifacts</id>
51                         <goals>
52                             <goal>attach-artifact</goal>
53                         </goals>
54                         <phase>package</phase>
55                         <configuration>
56                             <artifacts>
57                                 <artifact>
58                                     <file>${project.build.directory}/classes/initial/odl-sb-netconf-client-keypair.cfg
59                                     </file>
60                                     <type>cfg</type>
61                                     <classifier>config</classifier>
62                                 </artifact>
63                             </artifacts>
64                         </configuration>
65                     </execution>
66                 </executions>
67             </plugin>
68         </plugins>
69     </build>
70 </project>