Configure parent to skip deploy step
[portal.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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         
5         <groupId>org.openecomp.portal</groupId>
6         <artifactId>ecompportal-parent-project</artifactId>
7         <version>0</version>
8         <packaging>pom</packaging>
9         
10         <modules>
11                 <!-- Child modules do NOT name this parent. -->
12                 <!-- Defined for build convenience only! -->
13
14                 <!-- This POM names only ONAP projects -->      
15                 <module>ecomp-portal-BE-common</module>
16                 <module>ecomp-portal-BE-os</module>     
17                 <module>ecomp-portal-BE-common-test</module>
18                 <module>ecomp-portal-FE-os</module>
19         </modules>
20
21         <build>
22                 <plugins>
23                         <!-- No deployment step for this project -->
24                         <plugin>
25                                 <groupId>org.apache.maven.plugins</groupId>
26                                 <artifactId>maven-deploy-plugin</artifactId>
27                                 <version>2.8</version>
28                                 <configuration>
29                                         <skip>true</skip>
30                                 </configuration>
31                         </plugin>
32                 </plugins>
33         </build>
34 </project>