b5419cf3a56cf6ea9fe927c122c928dd51adcf5e
[l2switch.git] / arphandler / 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.2.4-SNAPSHOT</version>
9     <relativePath>../../parent</relativePath>
10   </parent>
11   <groupId>org.opendaylight.l2switch.arphandler</groupId>
12   <artifactId>arphandler-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.arphandler.configfile}</file>
30                   <type>xml</type>
31                   <classifier>config</classifier>
32                 </artifact>
33               </artifacts>
34             </configuration>
35           </execution>
36         </executions>
37       </plugin>
38     </plugins>
39   </build>
40 </project>