e886c3d1b823e5492baef485bbba32de956d9183
[openflowplugin.git] / openflowplugin-controller-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 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>openflowplugin-parent</artifactId>
16       <version>0.3.1-SNAPSHOT</version>
17       <relativePath>../parent</relativePath>
18     </parent>
19
20     <artifactId>openflowplugin-controller-config</artifactId>
21     <description>Controller Configuration files for openflowplugin + openflowjava couple</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/42-openflowplugin.xml</file>
39                                     <type>xml</type>
40                                     <classifier>config-He</classifier>
41                                 </artifact>
42                             </artifacts>
43                         </configuration>
44                     </execution>
45                     <execution>
46                         <id>attach-artifacts-ofp-cfg</id>
47                         <goals>
48                             <goal>attach-artifact</goal>
49                         </goals>
50                         <phase>package</phase>
51                         <configuration>
52                             <artifacts>
53                                 <artifact>
54                                     <file>${project.build.directory}/classes/initial/42-openflowplugin-new.xml</file>
55                                     <type>xml</type>
56                                     <classifier>config-Li</classifier>
57                                 </artifact>
58                             </artifacts>
59                         </configuration>
60                     </execution>
61                     <execution>
62                         <id>attach-artifacts-msgspy</id>
63                         <goals>
64                             <goal>attach-artifact</goal>
65                         </goals>
66                         <phase>package</phase>
67                         <configuration>
68                             <artifacts>
69                                 <artifact>
70                                     <file>${project.build.directory}/classes/initial/43-msg-spy.xml</file>
71                                     <type>xml</type>
72                                     <classifier>configmsgspy</classifier>
73                                 </artifact>
74                             </artifacts>
75                         </configuration>
76                     </execution>
77                 </executions>
78             </plugin>
79         </plugins>
80     </build>
81 </project>