blob: 7447e32506331ffb4f4aaa71034cfecab7dc7b25 [file] [log] [blame]
mukesh.paliwalb5aa8142021-02-26 21:16:00 +05301<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>
MukeshKumare53460a2021-06-25 13:16:40 +01007 <version>1.9.0-SNAPSHOT</version>
mukesh.paliwalb5aa8142021-02-26 21:16:00 +05308 </parent>
9 <artifactId>packages</artifactId>
10 <packaging>pom</packaging>
MukeshKumare53460a2021-06-25 13:16:40 +010011 <version>1.9.0-SNAPSHOT</version>
mukesh.paliwalb5aa8142021-02-26 21:16:00 +053012 <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>