blob: bd509467e6fa910dbdd4275eec9855d43a51e5ef [file] [log] [blame]
MukeshKumare8377e32021-02-11 13:38:26 +00001<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>
MukeshKumare38802a2021-02-26 09:45:02 +00007 <version>1.8.1-SNAPSHOT</version>
MukeshKumare8377e32021-02-11 13:38:26 +00008 </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>