1 <?xml version="1.0" encoding="UTF-8"?>
3 * ========================LICENSE_START=================================
6 * Copyright (C) 2021 Nordix Foundation
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ========================LICENSE_END===================================
22 xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
27 <groupId>org.springframework.boot</groupId>
28 <artifactId>spring-boot-starter-parent</artifactId>
29 <version>2.3.8.RELEASE</version>
32 <groupId>org.o-ran-sc.nonrtric</groupId>
33 <artifactId>helm-manager</artifactId>
34 <!-- Update this when stepping version of the helm-manager -->
35 <version>1.1.0-SNAPSHOT</version>
38 <name>The Apache Software License, Version 2.0</name>
39 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
44 <id>onap-releases</id>
45 <name>onap-releases</name>
46 <url>https://nexus.onap.org/content/repositories/releases/</url>
49 <id>onap-snapshots</id>
50 <name>onap-snapshots</name>
51 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
55 <name>39bf7eabe020-releases</name>
56 <url>https://artifactory.nordix.org/artifactory/onap-policy-clamp-participant-maven-local</url>
60 <!-- Update this when a new version of the dependency jar shall be included -->
61 <policy-clamp-participant-impl-kubernetes.version>6.1.2</policy-clamp-participant-impl-kubernetes.version>
62 <docker-maven-plugin.version>0.36.0</docker-maven-plugin.version>
66 <groupId>org.onap.policy.clamp.participant</groupId>
67 <artifactId>policy-clamp-participant-impl-kubernetes</artifactId>
68 <version>${policy-clamp-participant-impl-kubernetes.version}</version>
74 <!-- Make the jar file of the dependency available as a file for inclusion in the docker image-->
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-dependency-plugin</artifactId>
80 <phase>package</phase>
87 <groupId>org.onap.policy.clamp.participant</groupId>
88 <artifactId>policy-clamp-participant-impl-kubernetes</artifactId>
89 <version>${policy-clamp-participant-impl-kubernetes.version}</version>
91 <overWrite>true</overWrite>
92 <outputDirectory>${basedir}/target</outputDirectory>
93 <destFileName>app.jar</destFileName>
101 <groupId>io.fabric8</groupId>
102 <artifactId>docker-maven-plugin</artifactId>
103 <version>${docker-maven-plugin.version}</version>
104 <inherited>false</inherited>
107 <id>generate-helm-manager-image</id>
108 <phase>package</phase>
113 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
116 <name>o-ran-sc/nonrtric-helm-manager:${project.version}</name>
118 <cleanup>try</cleanup>
119 <contextDir>${basedir}</contextDir>
120 <dockerFile>Dockerfile</dockerFile>
122 <tag>${project.version}</tag>
130 <id>push-helm-manager-image</id>
136 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
137 <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
140 <name>o-ran-sc/nonrtric-helm-manager:${project.version}</name>
142 <contextDir>${basedir}</contextDir>
143 <dockerFile>Dockerfile</dockerFile>
145 <tag>${project.version}</tag>
158 <system>JIRA</system>
159 <url>https://jira.o-ran-sc.org/</url>