MukeshKumar | e8377e3 | 2021-02-11 13:38:26 +0000 | [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-etsi-sol003-adapter</groupId> |
| 6 | <artifactId>so-etsi-sol003-adapter</artifactId> |
MukeshKumar | e38802a | 2021-02-26 09:45:02 +0000 | [diff] [blame] | 7 | <version>1.8.1-SNAPSHOT</version> |
MukeshKumar | e8377e3 | 2021-02-11 13:38:26 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>packages</artifactId> |
| 10 | <packaging>pom</packaging> |
| 11 | <name>SO ETSI SOL003 Adapter Packages</name> |
| 12 | |
| 13 | <profiles> |
| 14 | <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> |
| 15 | |
| 16 | <profile> |
| 17 | <id>default</id> |
| 18 | <activation> |
| 19 | <activeByDefault>true</activeByDefault> |
| 20 | </activation> |
| 21 | </profile> |
| 22 | |
| 23 | <!-- Those profile are exclusive, choose docker or with-integration-tests --> |
| 24 | <profile> |
| 25 | <id>docker</id> |
| 26 | <modules> |
| 27 | <module>docker</module> |
| 28 | </modules> |
| 29 | <properties> |
| 30 | <docker.skip.push>false</docker.skip.push> |
| 31 | </properties> |
| 32 | </profile> |
| 33 | </profiles> |
| 34 | </project> |