Merge "Clean-up mdsal-netconf-notification"
[netconf.git] / netconf / netconf-topology-config / 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>odlparent-lite</artifactId>
17         <version>1.8.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.netconf</groupId>
22     <artifactId>netconf-topology-config</artifactId>
23     <version>1.2.0-SNAPSHOT</version>
24     <description>Configuration files for netconf topology</description>
25     <packaging>jar</packaging>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.codehaus.mojo</groupId>
31                 <artifactId>build-helper-maven-plugin</artifactId>
32                 <executions>
33                     <execution>
34                         <id>attach-artifacts</id>
35                         <goals>
36                             <goal>attach-artifact</goal>
37                         </goals>
38                         <phase>package</phase>
39                         <configuration>
40                             <artifacts>
41                                 <artifact>
42                                     <file>${project.build.directory}/classes/initial/02-netconf-topology.xml</file>
43                                     <type>xml</type>
44                                     <classifier>config</classifier>
45                                 </artifact>
46                                 <artifact>
47                                     <file>${project.build.directory}/classes/initial/02-clustered-netconf-topology.xml</file>
48                                     <type>xml</type>
49                                     <classifier>clustered-config</classifier>
50                                 </artifact>
51                             </artifacts>
52                         </configuration>
53                     </execution>
54                 </executions>
55             </plugin>
56         </plugins>
57     </build>
58
59 </project>