diff options
author | waqas.ikram <waqas.ikram@est.tech> | 2021-02-11 10:23:44 +0000 |
---|---|---|
committer | waqas.ikram <waqas.ikram@est.tech> | 2021-02-11 10:49:09 +0000 |
commit | 886c4c67bcfb7a6b1eda33928d2e7b6ec98fbead (patch) | |
tree | cfabcc4b5aa4bdc26693e04f2da9487cdce8b097 /packages/pom.xml | |
parent | 81db8adb025d0596f0a0be94515fad7a88dcc1bf (diff) |
Adding docker packaging module
Change-Id: I817d26d8f63e42a962512faba2bc515f5d8dfe06
Issue-ID: SO-3473
Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
Diffstat (limited to 'packages/pom.xml')
-rw-r--r-- | packages/pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/pom.xml b/packages/pom.xml new file mode 100644 index 0000000..8cf98aa --- /dev/null +++ b/packages/pom.xml @@ -0,0 +1,33 @@ +<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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.so.so-etsi-nfvo</groupId> + <artifactId>so-etsi-nfvo</artifactId> + <version>1.7.1-SNAPSHOT</version> + </parent> + <artifactId>packages</artifactId> + <packaging>pom</packaging> + <name>SO ETSI NFVO Packages</name> + + <profiles> + <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> + <profile> + <id>default</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + + <profile> + <id>docker</id> + <modules> + <module>docker</module> + </modules> + <properties> + <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) --> + <docker.skip.push>false</docker.skip.push> + </properties> + </profile> + </profiles> +</project>
\ No newline at end of file |