mukesh.paliwal | b5aa814 | 2021-02-26 21:16:00 +0530 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so.adapters.so-cnf-adapter</groupId> |
| 6 | <artifactId>so-cnf-adapter</artifactId> |
MukeshKumar | e53460a | 2021-06-25 13:16:40 +0100 | [diff] [blame^] | 7 | <version>1.9.0-SNAPSHOT</version> |
mukesh.paliwal | b5aa814 | 2021-02-26 21:16:00 +0530 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>packages</artifactId> |
| 10 | <packaging>pom</packaging> |
MukeshKumar | e53460a | 2021-06-25 13:16:40 +0100 | [diff] [blame^] | 11 | <version>1.9.0-SNAPSHOT</version> |
mukesh.paliwal | b5aa814 | 2021-02-26 21:16:00 +0530 | [diff] [blame] | 12 | <name>SO CNF Adapter Packages</name> |
| 13 | |
| 14 | <profiles> |
| 15 | <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> |
| 16 | |
| 17 | <profile> |
| 18 | <id>default</id> |
| 19 | <activation> |
| 20 | <activeByDefault>true</activeByDefault> |
| 21 | </activation> |
| 22 | </profile> |
| 23 | |
| 24 | <!-- Those profile are exclusive, choose docker or with-integration-tests --> |
| 25 | <profile> |
| 26 | <id>docker</id> |
| 27 | <modules> |
| 28 | <module>docker</module> |
| 29 | </modules> |
| 30 | <properties> |
| 31 | <docker.skip.push>false</docker.skip.push> |
| 32 | </properties> |
| 33 | </profile> |
| 34 | </profiles> |
| 35 | </project> |