Simplify CommonService interface
[openflowplugin.git] / applications / forwardingrules-manager-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2015 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.openflowplugin</groupId>
15         <artifactId>applications</artifactId>
16         <version>0.1.0-SNAPSHOT</version>
17     </parent>
18
19     <groupId>org.opendaylight.openflowplugin.applications</groupId>
20     <artifactId>forwardingrules-manager-config</artifactId>
21     <description>Configuration files for forwarding rules manager</description>
22     <packaging>jar</packaging>
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.codehaus.mojo</groupId>
27                 <artifactId>build-helper-maven-plugin</artifactId>
28                 <executions>
29                     <execution>
30                         <id>attach-artifacts</id>
31                         <goals>
32                             <goal>attach-artifact</goal>
33                         </goals>
34                         <phase>package</phase>
35                         <configuration>
36                             <artifacts>
37                                 <artifact>
38                                     <file>${project.build.directory}/classes/initial/30-forwardingrules-manager.xml
39                                     </file>
40                                     <type>xml</type>
41                                     <classifier>config</classifier>
42                                 </artifact>
43                             </artifacts>
44                         </configuration>
45                     </execution>
46                 </executions>
47             </plugin>
48         </plugins>
49     </build>
50 </project>