summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorChristopher Lott (cl778h) <clott@research.att.com>2017-07-12 16:26:42 -0400
committerChristopher Lott (cl778h) <clott@research.att.com>2017-07-12 18:04:49 -0400
commitd332e89eb9bbaf280604c61715422dde3542813c (patch)
treeb7bcb80d43754f61a0c06563f89bb1c879a4490a /pom.xml
parent31ba5d16b2572167bd7a83daa11181de284cf8d5 (diff)
Configure parent to skip deploy step
Change-Id: If65458934e12e3f7f61cf080ba8f99d7d233f291 Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 15 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index bf12fbba..a2243b3a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,21 +3,32 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.openecomp.portal</groupId>
- <artifactId>ecompportal</artifactId>
+ <artifactId>ecompportal-parent-project</artifactId>
<version>0</version>
<packaging>pom</packaging>
- <name>ECOMP Portal maven parent project</name>
<modules>
<!-- Child modules do NOT name this parent. -->
<!-- Defined for build convenience only! -->
- <!-- BE -->
+ <!-- This POM names only ONAP projects -->
<module>ecomp-portal-BE-common</module>
<module>ecomp-portal-BE-os</module>
<module>ecomp-portal-BE-common-test</module>
<module>ecomp-portal-FE-os</module>
-
</modules>
+ <build>
+ <plugins>
+ <!-- No deployment step for this project -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.8</version>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>