blob: 704e22ff60f5d7a86ff2ce8eceab48331894ad85 [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>
ChrisC1ba1d192017-03-13 05:01:04 -07007 <version>1.1.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </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>
xg353yb6b7bef2017-04-11 13:30:42 +020019 <url>http://www.openecomp.org/</url>
ChrisC025301d2017-01-31 11:40:03 +010020 </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>
ChrisC1ba1d192017-03-13 05:01:04 -070032
ChrisC025301d2017-01-31 11:40:03 +010033 <!-- 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>
xg353yb6b7bef2017-04-11 13:30:42 +020052 <!-- WAR PACKS -->
ChrisC025301d2017-01-31 11:40:03 +010053 <execution>
54 <configuration>
Mandeep Khinda4ffafa82017-03-09 16:21:13 -050055 <tarLongFileMode>posix</tarLongFileMode>
ChrisC025301d2017-01-31 11:40:03 +010056
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>
ChrisC1ba1d192017-03-13 05:01:04 -070071
ChrisC025301d2017-01-31 11:40:03 +010072
73 </executions>
74 </plugin>
75
76 </plugins>
77 </build>
78
xg353yb6b7bef2017-04-11 13:30:42 +020079</project>