elinuxhenrik | e5b384a | 2020-07-22 16:41:17 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ ONAP : ccsdk oran |
| 5 | ~ ================================================================================ |
PatrikBuhr | 1c317eb | 2023-02-23 12:39:31 +0100 | [diff] [blame] | 6 | ~ Copyright (C) 2020-2023 Nordix Foundation. All rights reserved. |
raviteja.karumuri | 3e02f63 | 2024-01-17 15:50:10 +0000 | [diff] [blame] | 7 | ~ Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. |
elinuxhenrik | e5b384a | 2020-07-22 16:41:17 +0200 | [diff] [blame] | 8 | ~ ================================================================================ |
| 9 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | ~ you may not use this file except in compliance with the License. |
| 11 | ~ You may obtain a copy of the License at |
| 12 | ~ |
| 13 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | ~ |
| 15 | ~ Unless required by applicable law or agreed to in writing, software |
| 16 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | ~ See the License for the specific language governing permissions and |
| 19 | ~ limitations under the License. |
| 20 | ~ ============LICENSE_END======================================================= |
| 21 | ~ |
| 22 | --> |
Dan Timoney | 22f179f | 2024-09-23 11:39:18 -0400 | [diff] [blame] | 23 | |
Dan Timoney | 42477eb | 2023-08-10 17:05:46 -0400 | [diff] [blame] | 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
elinuxhenrik | e5b384a | 2020-07-22 16:41:17 +0200 | [diff] [blame] | 25 | <modelVersion>4.0.0</modelVersion> |
elinuxhenrik | e5b384a | 2020-07-22 16:41:17 +0200 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.ccsdk.parent</groupId> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 28 | <artifactId>spring-boot-33-starter-parent</artifactId> |
Dan Timoney | 22f179f | 2024-09-23 11:39:18 -0400 | [diff] [blame] | 29 | <version>2.8.0</version> |
Dan Timoney | 42477eb | 2023-08-10 17:05:46 -0400 | [diff] [blame] | 30 | <relativePath/> |
elinuxhenrik | e5b384a | 2020-07-22 16:41:17 +0200 | [diff] [blame] | 31 | </parent> |
elinuxhenrik | e5b384a | 2020-07-22 16:41:17 +0200 | [diff] [blame] | 32 | <groupId>org.onap.ccsdk.oran</groupId> |
| 33 | <artifactId>a1-policy-management-service</artifactId> |
Dan Timoney | 7c50c52 | 2024-09-23 15:56:26 -0400 | [diff] [blame] | 34 | <version>1.8.1-SNAPSHOT</version> |
Lathish | a682c32 | 2020-07-30 15:52:12 +0100 | [diff] [blame] | 35 | <name>ccsdk-oran :: ${project.artifactId}</name> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 36 | <properties> |
JohnKeeney | 62abcd8 | 2023-03-01 19:04:58 +0000 | [diff] [blame] | 37 | <java.version.source>17</java.version.source> |
| 38 | <java.version.target>17</java.version.target> |
PatrikBuhr | aee1110 | 2023-01-16 15:27:10 +0100 | [diff] [blame] | 39 | <gson.version>2.10.1</gson.version> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 40 | <json.version>20240303</json.version> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 41 | <localstack.version>1.20.1</localstack.version> |
| 42 | <junit.jupiter.version>1.20.1</junit.jupiter.version> |
| 43 | <javax.annotation-api.version>1.3.2</javax.annotation-api.version> |
| 44 | <everit-json-schema.version>1.14.4</everit-json-schema.version> |
| 45 | <jackson-databind-nullable.version>0.2.6</jackson-databind-nullable.version> |
| 46 | <validation-api.version>2.0.1.Final</validation-api.version> |
| 47 | <swagger-annotations.version>2.2.15</swagger-annotations.version> |
| 48 | <spring-boot-actuator-autoconfigure.version>3.3.2</spring-boot-actuator-autoconfigure.version> |
PatrikBuhr | 44499d0 | 2023-04-04 10:06:22 +0200 | [diff] [blame] | 49 | <formatter-maven-plugin.version>2.22.0</formatter-maven-plugin.version> |
| 50 | <spotless-maven-plugin.version>2.35.0</spotless-maven-plugin.version> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 51 | <commons-io.version>2.16.1</commons-io.version> |
| 52 | <guava.version>33.3.0-jre</guava.version> |
JohnKeeney | 62abcd8 | 2023-03-01 19:04:58 +0000 | [diff] [blame] | 53 | <springdoc.version>2.0.2</springdoc.version> |
elinuxhenrik | c4d1f8a | 2020-08-24 13:30:10 +0200 | [diff] [blame] | 54 | <docker-maven-plugin>0.30.0</docker-maven-plugin> |
JohnKeeney | 2d985bd | 2023-03-31 15:27:16 +0100 | [diff] [blame] | 55 | <surefire-maven-plugin.version>3.0.0-M8</surefire-maven-plugin.version> |
halil.cakal | 40ce829 | 2023-02-02 12:25:13 +0000 | [diff] [blame] | 56 | <surefire-report-plugin.version>3.0.0-M8</surefire-report-plugin.version> |
PatrikBuhr | 3ac6f0f | 2023-02-01 12:14:34 +0100 | [diff] [blame] | 57 | <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version> |
Dan Timoney | efdb5b0 | 2020-11-02 11:00:33 -0500 | [diff] [blame] | 58 | <ccsdk.project.version>${project.version}</ccsdk.project.version> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 59 | <software.amazon.awssdk.version>2.27.8</software.amazon.awssdk.version> |
| 60 | <mapstruct.version>1.6.0</mapstruct.version> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 61 | <allowskiptests>false</allowskiptests> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 62 | </properties> |
| 63 | <dependencies> |
| 64 | <dependency> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 65 | <groupId>javax.validation</groupId> |
| 66 | <artifactId>validation-api</artifactId> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 67 | <version>${validation-api.version}</version> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>javax.annotation</groupId> |
| 71 | <artifactId>javax.annotation-api</artifactId> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 72 | <version>${javax.annotation-api.version}</version> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>io.swagger.core.v3</groupId> |
| 76 | <artifactId>swagger-annotations</artifactId> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 77 | <version>${swagger-annotations.version}</version> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.openapitools</groupId> |
| 81 | <artifactId>jackson-databind-nullable</artifactId> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 82 | <version>${jackson-databind-nullable.version}</version> |
PatrikBuhr | 6ef6b6f | 2023-04-25 15:11:04 +0200 | [diff] [blame] | 83 | </dependency> |
| 84 | <dependency> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 85 | <groupId>org.springframework.boot</groupId> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 86 | <artifactId>spring-boot</artifactId> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.springframework</groupId> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 90 | <artifactId>spring-context</artifactId> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.springframework.boot</groupId> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 94 | <artifactId>spring-boot-autoconfigure</artifactId> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 95 | </dependency> |
| 96 | <dependency> |
PatrikBuhr | 0f8b205 | 2021-12-20 13:40:14 +0100 | [diff] [blame] | 97 | <groupId>org.springframework.boot</groupId> |
| 98 | <artifactId>spring-boot-starter-webflux</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
aravind.est | b15c0ce | 2024-08-14 17:35:33 +0100 | [diff] [blame] | 101 | <groupId>org.springframework.boot</groupId> |
| 102 | <artifactId>spring-boot-starter-data-r2dbc</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.postgresql</groupId> |
| 106 | <artifactId>postgresql</artifactId> |
| 107 | <scope>runtime</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.postgresql</groupId> |
| 111 | <artifactId>r2dbc-postgresql</artifactId> |
| 112 | <scope>runtime</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
aravind.est | fdfb070 | 2024-08-16 12:50:52 +0100 | [diff] [blame] | 115 | <groupId>org.flywaydb</groupId> |
aravind.est | d0f3782 | 2024-08-28 17:57:57 +0100 | [diff] [blame] | 116 | <artifactId>flyway-database-postgresql</artifactId> |
| 117 | <scope>runtime</scope> |
aravind.est | fdfb070 | 2024-08-16 12:50:52 +0100 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 120 | <groupId>org.aspectj</groupId> |
| 121 | <artifactId>aspectjweaver</artifactId> |
| 122 | </dependency> |
| 123 | <dependency> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 124 | <groupId>org.apache.tomcat.embed</groupId> |
| 125 | <artifactId>tomcat-embed-core</artifactId> |
| 126 | </dependency> |
| 127 | <dependency> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 128 | <groupId>com.google.guava</groupId> |
| 129 | <artifactId>guava</artifactId> |
JohnKeeney | c9778a7 | 2022-11-01 18:49:15 +0000 | [diff] [blame] | 130 | <version>${guava.version}</version> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 131 | </dependency> |
| 132 | <dependency> |
PatrikBuhr | 3f3a4d7 | 2022-05-30 14:22:46 +0200 | [diff] [blame] | 133 | <groupId>com.google.code.gson</groupId> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 134 | <artifactId>gson</artifactId> |
PatrikBuhr | 3f3a4d7 | 2022-05-30 14:22:46 +0200 | [diff] [blame] | 135 | <version>${gson.version}</version> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.json</groupId> |
| 139 | <artifactId>json</artifactId> |
| 140 | <version>${json.version}</version> |
| 141 | </dependency> |
| 142 | <dependency> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 143 | <groupId>org.projectlombok</groupId> |
| 144 | <artifactId>lombok</artifactId> |
| 145 | <scope>provided</scope> |
| 146 | </dependency> |
raviteja.karumuri | 10948b6 | 2024-04-30 22:15:58 +0100 | [diff] [blame] | 147 | <dependency> |
| 148 | <groupId>org.mapstruct</groupId> |
| 149 | <artifactId>mapstruct</artifactId> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 150 | <version>${mapstruct.version}</version> |
raviteja.karumuri | 10948b6 | 2024-04-30 22:15:58 +0100 | [diff] [blame] | 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.mapstruct</groupId> |
| 154 | <artifactId>mapstruct-processor</artifactId> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 155 | <version>${mapstruct.version}</version> |
raviteja.karumuri | 10948b6 | 2024-04-30 22:15:58 +0100 | [diff] [blame] | 156 | </dependency> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 157 | <!-- Actuator dependencies --> |
| 158 | <dependency> |
| 159 | <groupId>org.springframework.boot</groupId> |
| 160 | <artifactId>spring-boot-starter-actuator</artifactId> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 161 | <scope>runtime</scope> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 162 | </dependency> |
halil.cakal | 8eadcb6 | 2022-09-29 09:47:09 +0100 | [diff] [blame] | 163 | <dependency> |
| 164 | <groupId>io.micrometer</groupId> |
| 165 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>org.springframework.boot</groupId> |
| 169 | <artifactId>spring-boot-starter-aop</artifactId> |
| 170 | </dependency> |
PatrikBuhr | e3693cf | 2022-10-14 11:38:22 +0200 | [diff] [blame] | 171 | <dependency> |
| 172 | <groupId>software.amazon.awssdk</groupId> |
| 173 | <artifactId>s3</artifactId> |
| 174 | <version>${software.amazon.awssdk.version}</version> |
| 175 | </dependency> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 176 | <!-- For development help --> |
| 177 | <dependency> |
| 178 | <groupId>org.springframework.boot</groupId> |
| 179 | <artifactId>spring-boot-devtools</artifactId> |
| 180 | <optional>true</optional> |
| 181 | <scope>runtime</scope> |
| 182 | </dependency> |
| 183 | <dependency> |
| 184 | <groupId>org.springframework.boot</groupId> |
| 185 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 186 | <optional>true</optional> |
| 187 | <scope>runtime</scope> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 188 | </dependency> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 189 | <dependency> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 190 | <groupId>org.testcontainers</groupId> |
| 191 | <artifactId>junit-jupiter</artifactId> |
| 192 | <version>${junit.jupiter.version}</version> |
| 193 | <scope>test</scope> |
| 194 | </dependency> |
| 195 | <dependency> |
| 196 | <groupId>org.testcontainers</groupId> |
| 197 | <artifactId>localstack</artifactId> |
| 198 | <version>${localstack.version}</version> |
| 199 | <scope>test</scope> |
| 200 | </dependency> |
| 201 | <dependency> |
elinuxhenrik | fa658f6 | 2020-11-05 12:37:43 +0100 | [diff] [blame] | 202 | <groupId>org.springframework.boot</groupId> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 203 | <artifactId>spring-boot-starter-test</artifactId> |
| 204 | <scope>test</scope> |
| 205 | </dependency> |
| 206 | <dependency> |
| 207 | <groupId>org.awaitility</groupId> |
| 208 | <artifactId>awaitility</artifactId> |
| 209 | <scope>test</scope> |
| 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>io.projectreactor</groupId> |
| 213 | <artifactId>reactor-test</artifactId> |
| 214 | <scope>test</scope> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>org.junit.jupiter</groupId> |
| 218 | <artifactId>junit-jupiter-engine</artifactId> |
| 219 | <scope>test</scope> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.mockito</groupId> |
| 223 | <artifactId>mockito-junit-jupiter</artifactId> |
| 224 | <scope>test</scope> |
| 225 | </dependency> |
| 226 | <dependency> |
| 227 | <groupId>org.mockito</groupId> |
| 228 | <artifactId>mockito-core</artifactId> |
| 229 | <scope>test</scope> |
| 230 | </dependency> |
| 231 | <dependency> |
| 232 | <groupId>com.squareup.okhttp3</groupId> |
| 233 | <artifactId>mockwebserver</artifactId> |
| 234 | <scope>test</scope> |
| 235 | </dependency> |
elinuxhenrik | 50b658d | 2020-11-11 14:11:37 +0100 | [diff] [blame] | 236 | <dependency> |
| 237 | <groupId>commons-io</groupId> |
| 238 | <artifactId>commons-io</artifactId> |
| 239 | <version>${commons-io.version}</version> |
| 240 | <scope>test</scope> |
| 241 | </dependency> |
PatrikBuhr | d279ef7 | 2021-09-21 14:47:59 +0200 | [diff] [blame] | 242 | <dependency> |
| 243 | <groupId>com.github.erosb</groupId> |
| 244 | <artifactId>everit-json-schema</artifactId> |
raviteja.karumuri | bfc1bfe | 2024-08-20 17:22:15 +0100 | [diff] [blame] | 245 | <version>${everit-json-schema.version}</version> |
PatrikBuhr | d279ef7 | 2021-09-21 14:47:59 +0200 | [diff] [blame] | 246 | </dependency> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 247 | <!-- For Tracing --> |
| 248 | <dependency> |
| 249 | <groupId>io.micrometer</groupId> |
| 250 | <artifactId>micrometer-tracing-bridge-otel</artifactId> |
| 251 | </dependency> |
| 252 | <dependency> |
| 253 | <groupId>io.opentelemetry</groupId> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 254 | <artifactId>opentelemetry-sdk-extension-jaeger-remote-sampler</artifactId> |
| 255 | </dependency> |
| 256 | <dependency> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 257 | <groupId>io.opentelemetry.instrumentation</groupId> |
| 258 | <artifactId>opentelemetry-spring-webflux-5.3</artifactId> |
| 259 | </dependency> |
| 260 | <dependency> |
lapentafd | ad80065 | 2024-06-24 10:54:54 +0100 | [diff] [blame] | 261 | <groupId>io.opentelemetry.instrumentation</groupId> |
| 262 | <artifactId>opentelemetry-spring-boot-starter</artifactId> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 263 | </dependency> |
| 264 | <!-- For ObservationRegistryCustomizer --> |
| 265 | <dependency> |
| 266 | <groupId>org.springframework.boot</groupId> |
| 267 | <artifactId>spring-boot-actuator-autoconfigure</artifactId> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 268 | <version>3.3.0</version> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 269 | </dependency> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 270 | </dependencies> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 271 | <dependencyManagement> |
| 272 | <dependencies> |
| 273 | <dependency> |
| 274 | <groupId>io.opentelemetry</groupId> |
| 275 | <artifactId>opentelemetry-bom</artifactId> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 276 | <version>1.41.0</version> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 277 | <type>pom</type> |
| 278 | <scope>import</scope> |
| 279 | </dependency> |
| 280 | <dependency> |
| 281 | <groupId>io.opentelemetry.instrumentation</groupId> |
| 282 | <artifactId>opentelemetry-instrumentation-bom-alpha</artifactId> |
lapentafd | aa14206 | 2024-08-20 14:24:11 +0100 | [diff] [blame] | 283 | <version>2.7.0-alpha</version> |
lapentafd | f734a40 | 2024-05-30 15:47:34 +0100 | [diff] [blame] | 284 | <type>pom</type> |
| 285 | <scope>import</scope> |
| 286 | </dependency> |
| 287 | </dependencies> |
| 288 | </dependencyManagement> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 289 | <build> |
| 290 | <plugins> |
| 291 | <plugin> |
Dan Timoney | bf5e4cd | 2022-12-01 17:02:22 -0500 | [diff] [blame] | 292 | <groupId>org.codehaus.gmaven</groupId> |
| 293 | <artifactId>groovy-maven-plugin</artifactId> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 294 | <version>2.1.1</version> |
Dan Timoney | efdb5b0 | 2020-11-02 11:00:33 -0500 | [diff] [blame] | 295 | <executions> |
| 296 | <execution> |
| 297 | <phase>validate</phase> |
| 298 | <goals> |
| 299 | <goal>execute</goal> |
| 300 | </goals> |
| 301 | <configuration> |
| 302 | <source>${basedir}/TagVersion.groovy</source> |
| 303 | </configuration> |
| 304 | </execution> |
| 305 | </executions> |
| 306 | </plugin> |
| 307 | <plugin> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 308 | <groupId>org.springframework.boot</groupId> |
| 309 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 310 | </plugin> |
Singal, Kapil (ks220y) | 7788a0b | 2020-09-03 16:24:57 -0400 | [diff] [blame] | 311 | <plugin> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 312 | <groupId>net.revelc.code.formatter</groupId> |
| 313 | <artifactId>formatter-maven-plugin</artifactId> |
| 314 | <version>${formatter-maven-plugin.version}</version> |
| 315 | <configuration> |
Singal, Kapil (ks220y) | 7788a0b | 2020-09-03 16:24:57 -0400 | [diff] [blame] | 316 | <lineEnding>LF</lineEnding> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 317 | <configFile>${project.basedir}/eclipse-formatter.xml</configFile> |
| 318 | </configuration> |
| 319 | <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format |
| 320 | spotless:apply process-sources --> |
| 321 | </plugin> |
| 322 | <plugin> |
| 323 | <groupId>com.diffplug.spotless</groupId> |
| 324 | <artifactId>spotless-maven-plugin</artifactId> |
| 325 | <version>${spotless-maven-plugin.version}</version> |
| 326 | <configuration> |
Singal, Kapil (ks220y) | 7788a0b | 2020-09-03 16:24:57 -0400 | [diff] [blame] | 327 | <lineEndings>UNIX</lineEndings> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 328 | <java> |
Dan Timoney | 42477eb | 2023-08-10 17:05:46 -0400 | [diff] [blame] | 329 | <removeUnusedImports/> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 330 | <importOrder> |
PatrikBuhr | 44499d0 | 2023-04-04 10:06:22 +0200 | [diff] [blame] | 331 | <order>com,io,java,lombok,javax,org,reactor</order> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 332 | </importOrder> |
| 333 | </java> |
| 334 | </configuration> |
| 335 | <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use |
| 336 | mvn spotless:apply to rewrite source files use mvn spotless:check to validate |
| 337 | source files --> |
| 338 | </plugin> |
| 339 | <plugin> |
| 340 | <groupId>org.apache.maven.plugins</groupId> |
| 341 | <artifactId>maven-surefire-plugin</artifactId> |
elinuxhenrik | 9c3a6bd | 2020-08-26 14:04:17 +0200 | [diff] [blame] | 342 | <version>${surefire-maven-plugin.version}</version> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 343 | <configuration> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 344 | <skipTests>${allowskiptests}</skipTests> |
Dan Timoney | 42477eb | 2023-08-10 17:05:46 -0400 | [diff] [blame] | 345 | <statelessTestsetReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5Xml30StatelessReporter"> |
halil.cakal | 40ce829 | 2023-02-02 12:25:13 +0000 | [diff] [blame] | 346 | <usePhrasedFileName>false</usePhrasedFileName> |
| 347 | <usePhrasedTestSuiteClassName>true</usePhrasedTestSuiteClassName> |
| 348 | <usePhrasedTestCaseClassName>true</usePhrasedTestCaseClassName> |
| 349 | <usePhrasedTestCaseMethodName>true</usePhrasedTestCaseMethodName> |
| 350 | </statelessTestsetReporter> |
Dan Timoney | 42477eb | 2023-08-10 17:05:46 -0400 | [diff] [blame] | 351 | <consoleOutputReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5ConsoleOutputReporter"> |
halil.cakal | 40ce829 | 2023-02-02 12:25:13 +0000 | [diff] [blame] | 352 | <usePhrasedFileName>false</usePhrasedFileName> |
| 353 | </consoleOutputReporter> |
Dan Timoney | 42477eb | 2023-08-10 17:05:46 -0400 | [diff] [blame] | 354 | <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoReporter"> |
halil.cakal | 40ce829 | 2023-02-02 12:25:13 +0000 | [diff] [blame] | 355 | <usePhrasedFileName>false</usePhrasedFileName> |
| 356 | <usePhrasedClassNameInRunning>true</usePhrasedClassNameInRunning> |
| 357 | <usePhrasedClassNameInTestCaseSummary>true</usePhrasedClassNameInTestCaseSummary> |
| 358 | </statelessTestsetInfoReporter> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 359 | </configuration> |
| 360 | </plugin> |
| 361 | <plugin> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 362 | <groupId>org.codehaus.mojo</groupId> |
| 363 | <artifactId>build-helper-maven-plugin</artifactId> |
| 364 | <executions> |
| 365 | <execution> |
| 366 | <id>add-source</id> |
| 367 | <phase>generate-sources</phase> |
| 368 | <goals> |
| 369 | <goal>add-source</goal> |
| 370 | </goals> |
| 371 | <configuration> |
| 372 | <sources> |
| 373 | <source>${project.build.directory}/generated-sources/annotations/</source> |
| 374 | </sources> |
| 375 | </configuration> |
| 376 | </execution> |
| 377 | </executions> |
| 378 | </plugin> |
| 379 | <plugin> |
| 380 | <groupId>org.jacoco</groupId> |
| 381 | <artifactId>jacoco-maven-plugin</artifactId> |
| 382 | <version>${jacoco-maven-plugin.version}</version> |
| 383 | <executions> |
| 384 | <execution> |
| 385 | <id>default-prepare-agent</id> |
| 386 | <goals> |
| 387 | <goal>prepare-agent</goal> |
| 388 | </goals> |
| 389 | </execution> |
| 390 | <execution> |
| 391 | <id>default-report</id> |
| 392 | <phase>prepare-package</phase> |
| 393 | <goals> |
| 394 | <goal>report</goal> |
| 395 | </goals> |
| 396 | </execution> |
| 397 | </executions> |
| 398 | </plugin> |
| 399 | <plugin> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 400 | <groupId>org.openapitools</groupId> |
| 401 | <artifactId>openapi-generator-maven-plugin</artifactId> |
| 402 | <version>7.7.0</version> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 403 | <executions> |
| 404 | <execution> |
| 405 | <id>generate-openapi-json</id> |
| 406 | <phase>prepare-package</phase> |
| 407 | <goals> |
| 408 | <goal>generate</goal> |
| 409 | </goals> |
| 410 | <configuration> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 411 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api.yaml</inputSpec> |
| 412 | <generatorName>openapi</generatorName> |
| 413 | <output>${project.basedir}/api/offeredapis/swagger</output> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 414 | <configOptions> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 415 | <outputFileName>pms-api.json</outputFileName> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 416 | </configOptions> |
| 417 | </configuration> |
| 418 | </execution> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 419 | <execution> |
| 420 | <id>generate-openapi-json-v3</id> |
| 421 | <phase>prepare-package</phase> |
| 422 | <goals> |
| 423 | <goal>generate</goal> |
| 424 | </goals> |
| 425 | <configuration> |
| 426 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api-v3.yaml</inputSpec> |
| 427 | <generatorName>openapi</generatorName> |
| 428 | <output>${project.basedir}/api/offeredapis/swagger</output> |
| 429 | <configOptions> |
| 430 | <outputFileName>pms-api-v3.json</outputFileName> |
| 431 | </configOptions> |
| 432 | </configuration> |
| 433 | </execution> |
elinuxhenrik | f28594d | 2020-12-07 14:54:19 +0100 | [diff] [blame] | 434 | <execution> |
raviteja.karumuri | 8909784 | 2024-09-20 14:06:44 +0100 | [diff] [blame^] | 435 | <id>generate-openapi-json-config-a1pms</id> |
| 436 | <phase>prepare-package</phase> |
| 437 | <goals> |
| 438 | <goal>generate</goal> |
| 439 | </goals> |
| 440 | <configuration> |
| 441 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api-v3.yaml</inputSpec> |
| 442 | <generatorName>openapi</generatorName> |
| 443 | <apisToGenerate>A1PolicyManagement</apisToGenerate> |
| 444 | <output>${project.basedir}/api/offeredapis/swagger</output> |
| 445 | <configOptions> |
| 446 | <outputFileName>a1pms-api-v3.json</outputFileName> |
| 447 | </configOptions> |
| 448 | </configuration> |
| 449 | </execution> |
| 450 | <execution> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 451 | <id>generate-openapi-html</id> |
| 452 | <phase>prepare-package</phase> |
elinuxhenrik | f28594d | 2020-12-07 14:54:19 +0100 | [diff] [blame] | 453 | <goals> |
| 454 | <goal>generate</goal> |
| 455 | </goals> |
| 456 | <configuration> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 457 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api.json</inputSpec> |
halil.cakal | b4ed333 | 2023-01-20 12:14:08 +0000 | [diff] [blame] | 458 | <generatorName>html2</generatorName> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 459 | <output>${project.basedir}/api/offeredapis/openapitoolgen/offeredapis/pms-api</output> |
halil.cakal | b4ed333 | 2023-01-20 12:14:08 +0000 | [diff] [blame] | 460 | <skipOperationExample>false</skipOperationExample> |
| 461 | <strictSpec>false</strictSpec> |
elinuxhenrik | f28594d | 2020-12-07 14:54:19 +0100 | [diff] [blame] | 462 | <configOptions> |
PatrikBuhr | 44499d0 | 2023-04-04 10:06:22 +0200 | [diff] [blame] | 463 | <appDescription>The O-RAN Non-RT RIC Policy Management Service |
| 464 | provides a REST API for managing O-RAN A1 Policies.</appDescription> |
halil.cakal | b4ed333 | 2023-01-20 12:14:08 +0000 | [diff] [blame] | 465 | <appName>ONAP CCSDK A1 Policy Management Service</appName> |
| 466 | <infoUrl>https://wiki.onap.org/display/DW/O-RAN+A1+Policies+in+ONAP</infoUrl> |
PatrikBuhr | 44499d0 | 2023-04-04 10:06:22 +0200 | [diff] [blame] | 467 | <licenseInfo>Copyright (C) 2020-2023 Nordix Foundation. Licensed |
raviteja.karumuri | 3e02f63 | 2024-01-17 15:50:10 +0000 | [diff] [blame] | 468 | under the Apache License, and Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.</licenseInfo> |
halil.cakal | b4ed333 | 2023-01-20 12:14:08 +0000 | [diff] [blame] | 469 | <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 470 | </configOptions> |
| 471 | </configuration> |
| 472 | </execution> |
| 473 | <execution> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 474 | <id>generate-openapi-html-v3</id> |
| 475 | <phase>prepare-package</phase> |
| 476 | <goals> |
| 477 | <goal>generate</goal> |
| 478 | </goals> |
| 479 | <configuration> |
| 480 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api-v3.json</inputSpec> |
| 481 | <generatorName>html2</generatorName> |
| 482 | <output>${project.basedir}/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3</output> |
| 483 | <skipOperationExample>false</skipOperationExample> |
| 484 | <strictSpec>false</strictSpec> |
| 485 | <configOptions> |
| 486 | <appDescription>The O-RAN Non-RT RIC Policy Management Service |
| 487 | provides a REST API for managing O-RAN A1 Policies.</appDescription> |
| 488 | <appName>ONAP CCSDK A1 Policy Management Service</appName> |
| 489 | <infoUrl>https://wiki.onap.org/display/DW/O-RAN+A1+Policies+in+ONAP</infoUrl> |
| 490 | <licenseInfo>Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.</licenseInfo> |
| 491 | <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> |
| 492 | </configOptions> |
| 493 | </configuration> |
| 494 | </execution> |
| 495 | <execution> |
raviteja.karumuri | 8909784 | 2024-09-20 14:06:44 +0100 | [diff] [blame^] | 496 | <id>generate-openapi-html-config-a1pms</id> |
| 497 | <phase>prepare-package</phase> |
| 498 | <goals> |
| 499 | <goal>generate</goal> |
| 500 | </goals> |
| 501 | <configuration> |
| 502 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api-v3.json</inputSpec> |
| 503 | <generatorName>html2</generatorName> |
| 504 | <output>${project.basedir}/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom</output> |
| 505 | <skipOperationExample>false</skipOperationExample> |
| 506 | <strictSpec>false</strictSpec> |
| 507 | <apisToGenerate>A1PolicyManagement</apisToGenerate> |
| 508 | <configOptions> |
| 509 | <appDescription>The O-RAN Non-RT RIC Policy Management Service |
| 510 | provides a REST API for managing O-RAN A1 Policies.</appDescription> |
| 511 | <appName>ONAP CCSDK A1 Policy Management Service</appName> |
| 512 | <infoUrl>https://wiki.onap.org/display/DW/O-RAN+A1+Policies+in+ONAP</infoUrl> |
| 513 | <licenseInfo>Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.</licenseInfo> |
| 514 | <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> |
| 515 | </configOptions> |
| 516 | </configuration> |
| 517 | </execution> |
| 518 | <execution> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 519 | <id>generate-policy-api</id> |
| 520 | <phase>generate-sources </phase> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 521 | <goals> |
| 522 | <goal>generate</goal> |
| 523 | </goals> |
| 524 | <configuration> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 525 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api.yaml</inputSpec> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 526 | <invokerPackage>${project.groupId}.a1policymanagementservice.controllers.v2</invokerPackage> |
| 527 | <apiPackage>${project.groupId}.a1policymanagementservice.controllers.api.v2</apiPackage> |
| 528 | <modelPackage>${project.groupId}.a1policymanagementservice.models.v2</modelPackage> |
| 529 | <generateApiTests>false</generateApiTests> |
| 530 | <generateModelTests>false</generateModelTests> |
| 531 | <generatorName>spring</generatorName> |
| 532 | <generateSupportingFiles>false</generateSupportingFiles> |
| 533 | <skipValidateSpec>false</skipValidateSpec> |
| 534 | <library>spring-boot</library> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 535 | <configOptions> |
raviteja.karumuri | a4687d9 | 2023-09-14 12:38:49 +0100 | [diff] [blame] | 536 | <sourceFolder>src/gen/java</sourceFolder> |
| 537 | <interfaceOnly>true</interfaceOnly> |
| 538 | <useTags>true</useTags> |
| 539 | <reactive>true</reactive> |
| 540 | <dateLibrary>java8</dateLibrary> |
| 541 | <java8>true</java8> |
| 542 | <unhandledException>true</unhandledException> |
| 543 | <openApiNullable>false</openApiNullable> |
| 544 | <skipDefaultInterface>true</skipDefaultInterface> |
elinuxhenrik | f28594d | 2020-12-07 14:54:19 +0100 | [diff] [blame] | 545 | </configOptions> |
| 546 | </configuration> |
| 547 | </execution> |
raviteja.karumuri | 6de5c03 | 2024-03-22 11:55:58 +0000 | [diff] [blame] | 548 | <execution> |
| 549 | <id>generate-policy-api-v3</id> |
| 550 | <phase>generate-sources </phase> |
| 551 | <goals> |
| 552 | <goal>generate</goal> |
| 553 | </goals> |
| 554 | <configuration> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 555 | <inputSpec>${project.basedir}/api/offeredapis/swagger/pms-api-v3.yaml</inputSpec> |
raviteja.karumuri | 6de5c03 | 2024-03-22 11:55:58 +0000 | [diff] [blame] | 556 | <invokerPackage>${project.groupId}.a1policymanagementservice.controllers.v3</invokerPackage> |
| 557 | <apiPackage>${project.groupId}.a1policymanagementservice.controllers.api.v3</apiPackage> |
| 558 | <modelPackage>${project.groupId}.a1policymanagementservice.models.v3</modelPackage> |
| 559 | <generateApiTests>false</generateApiTests> |
| 560 | <generateModelTests>false</generateModelTests> |
| 561 | <generatorName>spring</generatorName> |
| 562 | <generateSupportingFiles>false</generateSupportingFiles> |
| 563 | <skipValidateSpec>false</skipValidateSpec> |
| 564 | <library>spring-boot</library> |
| 565 | <configOptions> |
| 566 | <sourceFolder>src/gen/java</sourceFolder> |
| 567 | <interfaceOnly>true</interfaceOnly> |
| 568 | <useTags>true</useTags> |
| 569 | <reactive>true</reactive> |
| 570 | <dateLibrary>java8</dateLibrary> |
| 571 | <java8>true</java8> |
| 572 | <unhandledException>true</unhandledException> |
| 573 | <openApiNullable>false</openApiNullable> |
| 574 | <skipDefaultInterface>true</skipDefaultInterface> |
| 575 | </configOptions> |
| 576 | </configuration> |
| 577 | </execution> |
elinuxhenrik | f28594d | 2020-12-07 14:54:19 +0100 | [diff] [blame] | 578 | </executions> |
| 579 | </plugin> |
| 580 | <plugin> |
PatrikBuhr | 1122b01 | 2021-01-20 12:21:52 +0100 | [diff] [blame] | 581 | <artifactId>maven-resources-plugin</artifactId> |
| 582 | <executions> |
| 583 | <execution> |
JohnKeeney | e251d0c | 2023-02-20 18:00:44 +0000 | [diff] [blame] | 584 | <id>copy-resource-openapi</id> |
| 585 | <phase>package</phase> |
PatrikBuhr | 1122b01 | 2021-01-20 12:21:52 +0100 | [diff] [blame] | 586 | <goals> |
| 587 | <goal>copy-resources</goal> |
| 588 | </goals> |
| 589 | <configuration> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 590 | <outputDirectory>${project.basedir}/../docs/offeredapis</outputDirectory> |
raviteja.karumuri | 3e02f63 | 2024-01-17 15:50:10 +0000 | [diff] [blame] | 591 | <overwrite>true</overwrite> |
PatrikBuhr | 1122b01 | 2021-01-20 12:21:52 +0100 | [diff] [blame] | 592 | <resources> |
| 593 | <resource> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 594 | <directory>${project.basedir}/api/offeredapis</directory> |
PatrikBuhr | 1122b01 | 2021-01-20 12:21:52 +0100 | [diff] [blame] | 595 | <includes> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 596 | <include>swagger/pms-api.json</include> |
| 597 | <include>swagger/pms-api.yaml</include> |
| 598 | <include>swagger/pms-api-v3.json</include> |
| 599 | <include>swagger/pms-api-v3.yaml</include> |
raviteja.karumuri | 8909784 | 2024-09-20 14:06:44 +0100 | [diff] [blame^] | 600 | <include>swagger/a1pms-api-v3.json</include> |
raviteja.karumuri | 1203af8 | 2024-09-05 15:18:32 +0100 | [diff] [blame] | 601 | <include>openapitoolgen/offeredapis/pms-api/index.html</include> |
| 602 | <include>openapitoolgen/offeredapis/pms-api/v3/index.html</include> |
raviteja.karumuri | 8909784 | 2024-09-20 14:06:44 +0100 | [diff] [blame^] | 603 | <include>openapitoolgen/offeredapis/pms-api/v3/custom/index.html</include> |
PatrikBuhr | 1122b01 | 2021-01-20 12:21:52 +0100 | [diff] [blame] | 604 | </includes> |
| 605 | </resource> |
| 606 | </resources> |
| 607 | </configuration> |
| 608 | </execution> |
| 609 | </executions> |
| 610 | </plugin> |
| 611 | <plugin> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 612 | <groupId>io.fabric8</groupId> |
| 613 | <artifactId>docker-maven-plugin</artifactId> |
| 614 | <version>${docker-maven-plugin}</version> |
| 615 | <inherited>false</inherited> |
| 616 | <executions> |
| 617 | <execution> |
| 618 | <id>generate-policy-management-service-image</id> |
| 619 | <phase>package</phase> |
| 620 | <goals> |
| 621 | <goal>build</goal> |
| 622 | </goals> |
| 623 | <configuration> |
| 624 | <images> |
| 625 | <image> |
PatrikBuhr | 44499d0 | 2023-04-04 10:06:22 +0200 | [diff] [blame] | 626 | <name> |
| 627 | onap/ccsdk-oran-a1policymanagementservice:${project.version}</name> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 628 | <build> |
| 629 | <cleanup>try</cleanup> |
| 630 | <contextDir>${basedir}</contextDir> |
| 631 | <dockerFile>Dockerfile</dockerFile> |
| 632 | <args> |
| 633 | <JAR>${project.build.finalName}.jar</JAR> |
| 634 | </args> |
| 635 | <tags> |
| 636 | <tag>${project.version}</tag> |
| 637 | </tags> |
| 638 | </build> |
| 639 | </image> |
| 640 | </images> |
| 641 | </configuration> |
| 642 | </execution> |
| 643 | <execution> |
| 644 | <id>push-policy-management-service-image</id> |
| 645 | <goals> |
| 646 | <goal>build</goal> |
| 647 | <goal>push</goal> |
| 648 | </goals> |
| 649 | <configuration> |
| 650 | <images> |
| 651 | <image> |
PatrikBuhr | 44499d0 | 2023-04-04 10:06:22 +0200 | [diff] [blame] | 652 | <name> |
| 653 | onap/ccsdk-oran-a1policymanagementservice:${project.version}</name> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 654 | <build> |
| 655 | <contextDir>${basedir}</contextDir> |
| 656 | <dockerFile>Dockerfile</dockerFile> |
| 657 | <args> |
| 658 | <JAR>${project.build.finalName}.jar</JAR> |
| 659 | </args> |
| 660 | <tags> |
Dan Timoney | efdb5b0 | 2020-11-02 11:00:33 -0500 | [diff] [blame] | 661 | <tag>${project.docker.latestminortag.version}</tag> |
| 662 | <tag>${project.docker.latestfulltag.version}</tag> |
| 663 | <tag>${project.docker.latesttagtimestamp.version}</tag> |
RehanRaza | 0e3740a | 2020-08-03 15:56:03 +0200 | [diff] [blame] | 664 | </tags> |
| 665 | </build> |
| 666 | </image> |
| 667 | </images> |
| 668 | </configuration> |
| 669 | </execution> |
| 670 | </executions> |
| 671 | </plugin> |
| 672 | </plugins> |
| 673 | </build> |
halil.cakal | 40ce829 | 2023-02-02 12:25:13 +0000 | [diff] [blame] | 674 | <reporting> |
| 675 | <plugins> |
| 676 | <plugin> |
| 677 | <groupId>org.apache.maven.plugins</groupId> |
| 678 | <artifactId>maven-surefire-report-plugin</artifactId> |
| 679 | <version>${surefire-report-plugin.version}</version> |
| 680 | </plugin> |
| 681 | </plugins> |
| 682 | </reporting> |
nitincg | 3c7a324 | 2023-06-16 23:38:08 +0530 | [diff] [blame] | 683 | </project> |