blob: ba91015b5966d72023da13a22123227e9f4a9701 [file] [log] [blame]
puthuparambil.aditya7fb62422020-09-23 12:39:46 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2020 Bell Canada.
danielhanrahan454c8ab2022-05-27 16:23:38 +01004 Modifications Copyright (C) 2022 Nordix Foundation.
puthuparambil.aditya7fb62422020-09-23 12:39:46 +01005 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 SPDX-License-Identifier: Apache-2.0
19 ============LICENSE_END=========================================================
20-->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.policy.models.sim</groupId>
27 <artifactId>policy-models-sim</artifactId>
liamfallonc3acd892022-11-22 05:54:23 +000028 <version>2.7.3-SNAPSHOT</version>
puthuparambil.aditya7fb62422020-09-23 12:39:46 +010029 </parent>
30
31 <artifactId>models-sim-packages</artifactId>
32 <packaging>pom</packaging>
33
34 <name>${project.artifactId}</name>
35 <description>The module for packaging the policy-models-simulator component.</description>
36
37 <properties>
38 <!-- There is no code in this sub-module, only holds interfaces. So skip sonar. -->
39 <sonar.skip>true</sonar.skip>
40 </properties>
41
42 <profiles>
43 <profile>
44 <id>default</id>
45 <activation>
46 <activeByDefault>true</activeByDefault>
47 </activation>
48 <modules>
49 <module>models-simulator-tarball</module>
50 </modules>
51 </profile>
52 <profile>
53 <id>docker</id>
54 <modules>
55 <module>models-simulator-tarball</module>
56 <module>models-simulator-docker</module>
57 </modules>
58 <properties>
59 <docker.skip.push>false</docker.skip.push>
danielhanrahan454c8ab2022-05-27 16:23:38 +010060 <dockerFile>Dockerfile</dockerFile>
61 </properties>
62 </profile>
63 <profile>
64 <id>dockersuse</id>
65 <modules>
66 <module>models-simulator-tarball</module>
67 <module>models-simulator-docker</module>
68 </modules>
69 <properties>
70 <docker.skip.push>false</docker.skip.push>
71 <dockerFile>suse.Dockerfile</dockerFile>
puthuparambil.aditya7fb62422020-09-23 12:39:46 +010072 </properties>
73 </profile>
74 </profiles>
75</project>