blob: f61348b9bad06a6706639c4dec4258d94ce37f47 [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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <version>1.3.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040010 <groupId>org.onap.packages</groupId>
11 <artifactId>so-deliveries</artifactId>
ChrisC025301d2017-01-31 11:40:03 +010012 <packaging>pom</packaging>
13
14 <name>MsoDeliveries</name>
15
16 <description>This project is responsible of the final packages</description>
17 <organization>
Rob Daugherty38f72072018-03-14 02:07:32 -040018 <name>ONAP - SO</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
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040051 </execution>
ChrisC1ba1d192017-03-13 05:01:04 -070052
ChrisC025301d2017-01-31 11:40:03 +010053
54 </executions>
55 </plugin>
56
57 </plugins>
58 </build>
59
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070060</project>