Release Beryllium-SR3
[netconf.git] / opendaylight / netconf / netconf-topology-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.netconf</groupId>
8         <version>1.0.3-Beryllium-SR3</version>
9         <relativePath>../</relativePath>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12
13     <artifactId>netconf-topology-config</artifactId>
14     <description>Configuration files for netconf topology</description>
15     <packaging>jar</packaging>
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.codehaus.mojo</groupId>
20                 <artifactId>build-helper-maven-plugin</artifactId>
21                 <executions>
22                     <execution>
23                         <id>attach-artifacts</id>
24                         <goals>
25                             <goal>attach-artifact</goal>
26                         </goals>
27                         <phase>package</phase>
28                         <configuration>
29                             <artifacts>
30                                 <artifact>
31                                     <file>${project.build.directory}/classes/initial/02-netconf-topology.xml</file>
32                                     <type>xml</type>
33                                     <classifier>config</classifier>
34                                 </artifact>
35                                 <artifact>
36                                     <file>${project.build.directory}/classes/initial/02-clustered-netconf-topology.xml</file>
37                                     <type>xml</type>
38                                     <classifier>clustered-config</classifier>
39                                 </artifact>
40                             </artifacts>
41                         </configuration>
42                     </execution>
43                 </executions>
44             </plugin>
45         </plugins>
46     </build>
47
48 </project>