Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 2 | 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 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>so</artifactId> |
Lukasz Rajewski | 6f1ea87 | 2023-06-12 14:35:34 +0000 | [diff] [blame] | 7 | <version>1.13.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </parent> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 9 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 10 | <artifactId>packages</artifactId> |
| 11 | <packaging>pom</packaging> |
| 12 | <name>MSO Packages</name> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 13 | |
| 14 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 15 | <profiles> |
| 16 | <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 17 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 18 | <profile> |
| 19 | <id>default</id> |
| 20 | <activation> |
| 21 | <activeByDefault>true</activeByDefault> |
| 22 | </activation> |
| 23 | </profile> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 24 | |
| 25 | <!-- Those profile are exclusive, choose docker or with-integration-tests --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 26 | <profile> |
| 27 | <id>docker</id> |
| 28 | <modules> |
| 29 | <module>docker</module> |
| 30 | </modules> |
| 31 | <properties> |
| 32 | <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) --> |
| 33 | <docker.skip.push>false</docker.skip.push> |
| 34 | </properties> |
| 35 | </profile> |
| 36 | </profiles> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 37 | </project> |