ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 7 | <version>1.1.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame^] | 19 | <url>http://www.openecomp.org/</url> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 32 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame^] | 52 | <!-- WAR PACKS --> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 53 | <execution> |
| 54 | <configuration> |
Mandeep Khinda | 4ffafa8 | 2017-03-09 16:21:13 -0500 | [diff] [blame] | 55 | <tarLongFileMode>posix</tarLongFileMode> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 71 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 72 | |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | |
| 76 | </plugins> |
| 77 | </build> |
| 78 | |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame^] | 79 | </project> |