Merge "Fix OSX build failure:gid # is too big >2097151"
[so.git] / packages / deliveries / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <parent>
5                 <groupId>org.openecomp.mso</groupId>
6                 <artifactId>packages</artifactId>
7                 <version>1.1.0-SNAPSHOT</version>
8         </parent>
9
10         <groupId>org.openecomp.mso.packages</groupId>
11         <artifactId>mso-deliveries</artifactId>
12         <packaging>pom</packaging>
13
14         <name>MsoDeliveries</name>
15
16         <description>This project is responsible of the final packages</description>
17         <organization>
18                 <name>OPENECOMP - MSO</name>
19                 <url>http://www.openecomp.org/</url>
20         </organization>
21
22
23         <build>
24
25                 <plugins>
26
27                         <plugin>
28                                 <groupId>org.apache.maven.plugins</groupId>
29                                 <artifactId>maven-assembly-plugin</artifactId>
30                                 <version>2.6</version>
31                                 <executions>
32
33                                         <!-- MSO DB PACKS -->
34                     <execution>
35                         <configuration>
36
37                             <descriptors>
38                                 <descriptor>src/main/assembly/mso-config/mso-db.xml</descriptor>
39                             </descriptors>
40                             <finalName>mso-config/mso-db-${project.version}</finalName>
41                             <appendAssemblyId>false</appendAssemblyId>
42                             <attach>false</attach>
43                         </configuration>
44
45                         <id>db-packs-mso</id>
46                         <phase>package</phase>
47                         <goals>
48                             <goal>single</goal>
49                         </goals>
50
51                     </execution>
52                                         <!-- DEVELOPER PACKS -->
53                                         <execution>
54                                                 <configuration>
55                                                         <tarLongFileMode>posix</tarLongFileMode>
56
57                                                         <descriptors>
58                                                                 <descriptor>src/main/assembly/war-pack/mso-wars.xml</descriptor>
59                                                         </descriptors>
60                                                         <finalName>war-pack/mso-${project.version}</finalName>
61                                                         <appendAssemblyId>false</appendAssemblyId>
62                                                         <attach>false</attach>
63                                                 </configuration>
64
65                                                 <id>war-pack-mso</id>
66                                                 <phase>package</phase>
67                                                 <goals>
68                                                         <goal>single</goal>
69                                                 </goals>
70                                         </execution>
71
72
73                                 </executions>
74                         </plugin>
75
76                 </plugins>
77         </build>
78
79 </project>