blob: 5f20b187ce3217c656ba3b258fc5ffb2c21f421a [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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>0.0.4-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
56 <descriptors>
57 <descriptor>src/main/assembly/war-pack/mso-wars.xml</descriptor>
58 </descriptors>
59 <finalName>war-pack/mso-${project.version}</finalName>
60 <appendAssemblyId>false</appendAssemblyId>
61 <attach>false</attach>
62 </configuration>
63
64 <id>war-pack-mso</id>
65 <phase>package</phase>
66 <goals>
67 <goal>single</goal>
68 </goals>
69 </execution>
70
71
72 </executions>
73 </plugin>
74
75 </plugins>
76 </build>
77
78</project>