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