Migrate to odlparent 1.8.0-Carbon
[controller.git] / opendaylight / md-sal / sal-clustering-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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <modelVersion>4.0.0</modelVersion>
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>odlparent-lite</artifactId>
15     <version>1.8.0-Carbon</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.controller</groupId>
20   <artifactId>sal-clustering-config</artifactId>
21   <version>1.6.0-SNAPSHOT</version>
22   <packaging>jar</packaging>
23   <description>Configuration files for md-sal clustering</description>
24
25   <build>
26     <plugins>
27       <plugin>
28       <groupId>org.codehaus.mojo</groupId>
29       <artifactId>build-helper-maven-plugin</artifactId>
30       <executions>
31         <execution>
32           <id>attach-artifacts</id>
33           <goals>
34             <goal>attach-artifact</goal>
35           </goals>
36           <phase>package</phase>
37           <configuration>
38             <artifacts>
39               <artifact>
40                 <file>${project.build.directory}/classes/initial/05-clustering.xml.conf</file>
41                 <type>xml</type>
42                 <classifier>config</classifier>
43               </artifact>
44               <artifact>
45                 <file>${project.build.directory}/classes/initial/06-clustered-entity-ownership.xml.conf</file>
46                 <type>xml</type>
47                 <classifier>entityownershipconfig</classifier>
48               </artifact>
49               <artifact>
50                 <file>${project.build.directory}/classes/initial/akka.conf</file>
51                 <type>xml</type>
52                 <classifier>akkaconf</classifier>
53               </artifact>
54               <artifact>
55                 <file>${project.build.directory}/classes/initial/factory-akka.conf</file>
56                 <type>xml</type>
57                 <classifier>factoryakkaconf</classifier>
58               </artifact>
59               <artifact>
60                 <file>${project.build.directory}/classes/initial/module-shards.conf</file>
61                 <type>xml</type>
62                 <classifier>moduleshardconf</classifier>
63               </artifact>
64               <artifact>
65                 <file>${project.build.directory}/classes/initial/modules.conf</file>
66                 <type>xml</type>
67                 <classifier>moduleconf</classifier>
68               </artifact>
69               <artifact>
70                 <file>${project.build.directory}/classes/initial/datastore.cfg</file>
71                 <type>cfg</type>
72                 <classifier>datastore</classifier>
73               </artifact>
74             </artifacts>
75           </configuration>
76         </execution>
77       </executions>
78       </plugin>
79     </plugins>
80   </build>
81 </project>