| <!-- |
| ============LICENSE_START======================================================= |
| ONAP SDC |
| ================================================================================ |
| Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
| ================================================================================ |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| * |
| http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| ============LICENSE_END========================================================= |
| ================================================================================ |
| --> |
| |
| <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"> |
| <parent> |
| <artifactId>catalog-be-plugins</artifactId> |
| <groupId>org.openecomp.sdc</groupId> |
| <version>1.13.6-SNAPSHOT</version> |
| </parent> |
| |
| <packaging>pom</packaging> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>backend-all-plugins</artifactId> |
| |
| <properties> |
| <docker.skip.build>true</docker.skip.build> |
| <docker.skip.push>true</docker.skip.push> |
| <docker.skip.tag>true</docker.skip.tag> |
| <docker.skip>true</docker.skip> |
| </properties> |
| <dependencies> |
| <dependency> |
| <groupId>org.openecomp.sdc</groupId> |
| <artifactId>etsi-nfv-nsd-csar-plugin</artifactId> |
| <type>jar</type> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| <profiles> |
| <profile> |
| <id>docker</id> |
| <activation> |
| <activeByDefault>false</activeByDefault> |
| </activation> |
| <properties> |
| <skip.staging.artifacts>true</skip.staging.artifacts> |
| <docker.skip.build>false</docker.skip.build> |
| <docker.skip.tag>false</docker.skip.tag> |
| <docker.skip.push>false</docker.skip.push> |
| <docker.skip>false</docker.skip> |
| </properties> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>io.fabric8</groupId> |
| <artifactId>docker-maven-plugin</artifactId> |
| <configuration> |
| <verbose>${verbose}</verbose> |
| <apiVersion>${docker.api.version}</apiVersion> |
| <registry>${docker.registry}</registry> |
| <verbose>${verbose}</verbose> |
| <authConfig> |
| <pull> |
| <username>${docker.username}</username> |
| <password>${docker.password}</password> |
| </pull> |
| </authConfig> |
| <images> |
| <!-- Build backend image --> |
| <image> |
| <name>${docker.namespace}/sdc-backend-all-plugins</name> |
| <alias>sdc-backend-all-plugins</alias> |
| <build> |
| <cleanup>try</cleanup> |
| <dockerFile>backend-all-plugins/Dockerfile</dockerFile> |
| <tags> |
| <tag>latest</tag> |
| <tag> |
| ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest |
| </tag> |
| <tag> |
| ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp} |
| </tag> |
| </tags> |
| <assembly> |
| <descriptor> |
| backend-all-plugins/backend-all-plugins-files.xml |
| </descriptor> |
| <name>onap-sdc-backend-all-plugins</name> |
| </assembly> |
| </build> |
| </image> |
| </images> |
| </configuration> |
| <executions> |
| <execution> |
| <id>clean-images</id> |
| <phase>pre-clean</phase> |
| <goals> |
| <goal>remove</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>generate-images</id> |
| <phase>install</phase> |
| <goals> |
| <goal>build</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>push-images</id> |
| <phase>deploy</phase> |
| <goals> |
| <goal>push</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| </project> |