rokenny | 1d9a4a6 | 2019-04-09 20:34:44 +0000 | [diff] [blame] | 1 | <!-- ============LICENSE_START======================================================= |
| 2 | Copyright (C) 2019 Nordix Foundation. ================================================================================ |
| 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | use this file except in compliance with the License. You may obtain a copy |
| 5 | of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 6 | by applicable law or agreed to in writing, software distributed under the |
| 7 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 8 | OF ANY KIND, either express or implied. See the License for the specific |
| 9 | language governing permissions and limitations under the License. SPDX-License-Identifier: |
| 10 | Apache-2.0 ============LICENSE_END========================================================= --> |
| 11 | |
| 12 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 13 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 14 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 15 | <modelVersion>4.0.0</modelVersion> |
| 16 | <parent> |
| 17 | <groupId>org.onap.svnfm</groupId> |
| 18 | <artifactId>simulator</artifactId> |
| 19 | <version>1.0.0-SNAPSHOT</version> |
| 20 | </parent> |
| 21 | |
| 22 | <artifactId>packages</artifactId> |
| 23 | <packaging>pom</packaging> |
| 24 | <name>SVNFM Simulator Packages</name> |
| 25 | |
| 26 | |
| 27 | <profiles> |
| 28 | <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> |
| 29 | |
| 30 | <profile> |
| 31 | <id>default</id> |
| 32 | <activation> |
| 33 | <activeByDefault>true</activeByDefault> |
| 34 | </activation> |
| 35 | </profile> |
| 36 | |
| 37 | <!-- Those profile are exclusive, choose docker or with-integration-tests --> |
| 38 | <profile> |
| 39 | <id>docker</id> |
| 40 | <modules> |
| 41 | <module>docker</module> |
| 42 | </modules> |
| 43 | <properties> |
| 44 | <!-- For this profile we probably don't want to skip the docker push |
| 45 | (if deploy goal is specified) --> |
| 46 | <docker.skip.push>false</docker.skip.push> |
| 47 | </properties> |
| 48 | </profile> |
| 49 | </profiles> |
| 50 | </project> |