blob: 04f32335d4b0d412223394b2bc541cc9a067eafd [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>
7 <version>1.8.0-SNAPSHOT</version>
8 </parent>
9 <artifactId>packages</artifactId>
10 <packaging>pom</packaging>
mukesh.paliwalb45ef9e2021-02-26 22:20:19 +053011 <version>1.8.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>