blob: a90568811a0e036f92a15fa3c8ab9773ce0f5fb2 [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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +01006 <artifactId>packages</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08007 <version>1.2.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9
Arthur Martella22e015f2018-02-22 14:24:40 -050010 <groupId>org.onap.so.packages</groupId>
ChrisC025301d2017-01-31 11:40:03 +010011 <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>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070019 <url>http://www.onap.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
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070079</project>