Mass replace CRLF->LF
[openflowjava.git] / openflowjava-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. 
3     This program and the accompanying materials are made available under the 
4     terms of the Eclipse Public License v1.0 which accompanies this distribution, 
5     and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.openflowjava</groupId>
13         <artifactId>openflow-protocol-parent</artifactId>
14         <version>0.6.0-SNAPSHOT</version>
15     </parent>
16     <artifactId>openflowjava-config</artifactId>
17     <description>Configuration files for openflowjava statistics</description>
18     <packaging>jar</packaging>
19     <name>Openflow Protocol Library - CONFIG</name>
20     <scm>
21         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
22         <tag>HEAD</tag>
23     </scm>
24     <properties>
25         <configfile>45-openflowjava-stats.xml</configfile>
26     </properties>
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/${configfile}</file>
43                                     <type>xml</type>
44                                     <classifier>configstats</classifier>
45                                 </artifact>
46                             </artifacts>
47                         </configuration>
48                     </execution>
49                 </executions>
50             </plugin>
51         </plugins>
52     </build>
53 </project>