blob: d0862ae8e50bd1e50d0657b94ec4c10a963af8b1 [file] [log] [blame]
elinuxhenrike5b384a2020-07-22 16:41:17 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk oran
5 ~ ================================================================================
6 ~ Copyright (C) 2020 Nordix Foundation. All rights reserved.
7 ~ ================================================================================
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
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
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=======================================================
20 ~
21-->
22<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">
23 <modelVersion>4.0.0</modelVersion>
elinuxhenrike5b384a2020-07-22 16:41:17 +020024 <parent>
25 <groupId>org.onap.ccsdk.parent</groupId>
JohnKeeneyf5f34a52022-04-29 18:07:46 +010026 <artifactId>spring-boot-26-starter-parent</artifactId>
Dan Timoney4242d5b2023-01-04 07:50:57 -050027 <version>2.5.1</version>
Dan Timoney8a70f002021-08-31 10:40:07 -040028 <relativePath/>
elinuxhenrike5b384a2020-07-22 16:41:17 +020029 </parent>
elinuxhenrike5b384a2020-07-22 16:41:17 +020030 <groupId>org.onap.ccsdk.oran</groupId>
31 <artifactId>a1-policy-management-service</artifactId>
Timoney, Dan (dt5972)883ecc22022-10-20 15:31:38 -040032 <version>1.5.0-SNAPSHOT</version>
Lathisha682c322020-07-30 15:52:12 +010033 <name>ccsdk-oran :: ${project.artifactId}</name>
RehanRaza0e3740a2020-08-03 15:56:03 +020034 <properties>
35 <java.version.source>11</java.version.source>
36 <java.version.target>11</java.version.target>
RehanRazab369f782021-01-29 13:26:00 +010037 <springfox.version>3.0.0</springfox.version>
PatrikBuhraee11102023-01-16 15:27:10 +010038 <gson.version>2.10.1</gson.version>
39 <json.version>20220924</json.version>
elinuxhenrikfa658f62020-11-05 12:37:43 +010040 <formatter-maven-plugin.version>2.13.0</formatter-maven-plugin.version>
41 <spotless-maven-plugin.version>2.5.0</spotless-maven-plugin.version>
PatrikBuhrc6cca202022-01-04 17:10:12 +010042 <commons-io.version>2.11.0</commons-io.version>
JohnKeeneyc9778a72022-11-01 18:49:15 +000043 <guava.version>31.0.1-jre</guava.version>
JohnKeeneye251d0c2023-02-20 18:00:44 +000044 <snakeyaml.version>1.32</snakeyaml.version><!-- overrides version included via spring-boot-starter to address CVE-2022-38750 CVE-2022-38752 CVE-2022-25857. Remove later if possible -->
elinuxhenrikc4d1f8a2020-08-24 13:30:10 +020045 <docker-maven-plugin>0.30.0</docker-maven-plugin>
PatrikBuhr1122b012021-01-20 12:21:52 +010046 <surefire-maven-plugin.version>3.0.0-M5</surefire-maven-plugin.version>
halil.cakal40ce8292023-02-02 12:25:13 +000047 <surefire-report-plugin.version>3.0.0-M8</surefire-report-plugin.version>
PatrikBuhr3ac6f0f2023-02-01 12:14:34 +010048 <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
elinuxhenrikf28594d2020-12-07 14:54:19 +010049 <swagger-codegen-maven-plugin.version>3.0.11</swagger-codegen-maven-plugin.version>
Dan Timoneyefdb5b02020-11-02 11:00:33 -050050 <ccsdk.project.version>${project.version}</ccsdk.project.version>
PatrikBuhraee11102023-01-16 15:27:10 +010051 <software.amazon.awssdk.version>2.19.17</software.amazon.awssdk.version>
JohnKeeneye251d0c2023-02-20 18:00:44 +000052 <allowskiptests>false</allowskiptests>
RehanRaza0e3740a2020-08-03 15:56:03 +020053 </properties>
54 <dependencies>
55 <dependency>
56 <groupId>org.springframework.boot</groupId>
elinuxhenrikfa658f62020-11-05 12:37:43 +010057 <artifactId>spring-boot</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-beans</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework</groupId>
65 <artifactId>spring-context</artifactId>
RehanRaza0e3740a2020-08-03 15:56:03 +020066 </dependency>
67 <dependency>
68 <groupId>org.springframework.boot</groupId>
elinuxhenrikfa658f62020-11-05 12:37:43 +010069 <artifactId>spring-boot-autoconfigure</artifactId>
RehanRaza0e3740a2020-08-03 15:56:03 +020070 </dependency>
71 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +010072 <groupId>org.springframework</groupId>
73 <artifactId>spring-web</artifactId>
RehanRaza0e3740a2020-08-03 15:56:03 +020074 </dependency>
75 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +010076 <groupId>org.springframework</groupId>
77 <artifactId>spring-webmvc</artifactId>
RehanRaza0e3740a2020-08-03 15:56:03 +020078 </dependency>
79 <dependency>
PatrikBuhr0f8b2052021-12-20 13:40:14 +010080 <groupId>org.springframework.boot</groupId>
81 <artifactId>spring-boot-starter-webflux</artifactId>
82 </dependency>
83 <dependency>
RehanRaza0e3740a2020-08-03 15:56:03 +020084 <groupId>org.springframework</groupId>
85 <artifactId>spring-webflux</artifactId>
86 </dependency>
87 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +010088 <groupId>io.springfox</groupId>
89 <artifactId>springfox-spring-web</artifactId>
90 <version>${springfox.version}</version>
RehanRaza0e3740a2020-08-03 15:56:03 +020091 </dependency>
92 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +010093 <groupId>io.springfox</groupId>
94 <artifactId>springfox-spi</artifactId>
95 <version>${springfox.version}</version>
RehanRaza0e3740a2020-08-03 15:56:03 +020096 </dependency>
97 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +010098 <groupId>io.springfox</groupId>
99 <artifactId>springfox-core</artifactId>
100 <version>${springfox.version}</version>
101 </dependency>
102 <dependency>
103 <groupId>org.aspectj</groupId>
104 <artifactId>aspectjweaver</artifactId>
105 </dependency>
106 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +0100107 <groupId>org.apache.tomcat.embed</groupId>
108 <artifactId>tomcat-embed-core</artifactId>
109 </dependency>
110 <dependency>
elinuxhenrikfa658f62020-11-05 12:37:43 +0100111 <groupId>com.google.guava</groupId>
112 <artifactId>guava</artifactId>
JohnKeeneyc9778a72022-11-01 18:49:15 +0000113 <version>${guava.version}</version>
RehanRaza0e3740a2020-08-03 15:56:03 +0200114 </dependency>
115 <dependency>
PatrikBuhr3f3a4d72022-05-30 14:22:46 +0200116 <groupId>com.google.code.gson</groupId>
RehanRaza0e3740a2020-08-03 15:56:03 +0200117 <artifactId>gson</artifactId>
PatrikBuhr3f3a4d72022-05-30 14:22:46 +0200118 <version>${gson.version}</version>
RehanRaza0e3740a2020-08-03 15:56:03 +0200119 </dependency>
120 <dependency>
121 <groupId>org.json</groupId>
122 <artifactId>json</artifactId>
123 <version>${json.version}</version>
124 </dependency>
125 <dependency>
RehanRaza0e3740a2020-08-03 15:56:03 +0200126 <groupId>org.projectlombok</groupId>
127 <artifactId>lombok</artifactId>
128 <scope>provided</scope>
129 </dependency>
RehanRaza0e3740a2020-08-03 15:56:03 +0200130 <!-- Actuator dependencies -->
131 <dependency>
132 <groupId>org.springframework.boot</groupId>
133 <artifactId>spring-boot-starter-actuator</artifactId>
elinuxhenrikfa658f62020-11-05 12:37:43 +0100134 <scope>runtime</scope>
RehanRaza0e3740a2020-08-03 15:56:03 +0200135 </dependency>
halil.cakal8eadcb62022-09-29 09:47:09 +0100136 <dependency>
137 <groupId>io.micrometer</groupId>
138 <artifactId>micrometer-registry-prometheus</artifactId>
139 </dependency>
140 <dependency>
141 <groupId>org.springframework.boot</groupId>
142 <artifactId>spring-boot-starter-aop</artifactId>
143 </dependency>
PatrikBuhre3693cf2022-10-14 11:38:22 +0200144 <dependency>
145 <groupId>software.amazon.awssdk</groupId>
146 <artifactId>s3</artifactId>
147 <version>${software.amazon.awssdk.version}</version>
148 </dependency>
RehanRaza0e3740a2020-08-03 15:56:03 +0200149 <!--REQUIRED TO GENERATE DOCUMENTATION -->
150 <dependency>
151 <groupId>io.springfox</groupId>
152 <artifactId>springfox-swagger2</artifactId>
153 <version>${springfox.version}</version>
154 </dependency>
155 <dependency>
156 <groupId>io.springfox</groupId>
157 <artifactId>springfox-swagger-ui</artifactId>
158 <version>${springfox.version}</version>
elinuxhenrikfa658f62020-11-05 12:37:43 +0100159 <scope>runtime</scope>
160 </dependency>
161 <!-- For development help -->
162 <dependency>
163 <groupId>org.springframework.boot</groupId>
164 <artifactId>spring-boot-devtools</artifactId>
165 <optional>true</optional>
166 <scope>runtime</scope>
167 </dependency>
168 <dependency>
169 <groupId>org.springframework.boot</groupId>
170 <artifactId>spring-boot-configuration-processor</artifactId>
171 <optional>true</optional>
172 <scope>runtime</scope>
RehanRaza0e3740a2020-08-03 15:56:03 +0200173 </dependency>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400174 <!-- TEST -->
RehanRaza0e3740a2020-08-03 15:56:03 +0200175 <dependency>
PatrikBuhr4faa67e2022-07-06 11:57:20 +0200176 <groupId>org.springdoc</groupId>
177 <artifactId>springdoc-openapi-ui</artifactId>
178 <version>1.6.6</version>
179 <scope>test</scope>
180 </dependency>
181 <dependency>
RehanRaza0e3740a2020-08-03 15:56:03 +0200182 <groupId>org.springframework.boot</groupId>
elinuxhenrikfa658f62020-11-05 12:37:43 +0100183 <artifactId>spring-boot-test</artifactId>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
187 <groupId>org.springframework.boot</groupId>
RehanRaza0e3740a2020-08-03 15:56:03 +0200188 <artifactId>spring-boot-starter-test</artifactId>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>org.awaitility</groupId>
193 <artifactId>awaitility</artifactId>
194 <scope>test</scope>
195 </dependency>
196 <dependency>
197 <groupId>io.projectreactor</groupId>
198 <artifactId>reactor-test</artifactId>
199 <scope>test</scope>
200 </dependency>
201 <dependency>
202 <groupId>org.junit.jupiter</groupId>
203 <artifactId>junit-jupiter-engine</artifactId>
204 <scope>test</scope>
205 </dependency>
206 <dependency>
207 <groupId>org.mockito</groupId>
208 <artifactId>mockito-junit-jupiter</artifactId>
209 <scope>test</scope>
210 </dependency>
211 <dependency>
212 <groupId>org.mockito</groupId>
213 <artifactId>mockito-core</artifactId>
214 <scope>test</scope>
215 </dependency>
216 <dependency>
217 <groupId>com.squareup.okhttp3</groupId>
218 <artifactId>mockwebserver</artifactId>
219 <scope>test</scope>
220 </dependency>
elinuxhenrik50b658d2020-11-11 14:11:37 +0100221 <dependency>
222 <groupId>commons-io</groupId>
223 <artifactId>commons-io</artifactId>
224 <version>${commons-io.version}</version>
225 <scope>test</scope>
226 </dependency>
PatrikBuhrd279ef72021-09-21 14:47:59 +0200227 <dependency>
228 <groupId>com.github.erosb</groupId>
229 <artifactId>everit-json-schema</artifactId>
PatrikBuhr62c25962022-03-25 15:39:06 +0100230 <version>1.14.0</version>
PatrikBuhrd279ef72021-09-21 14:47:59 +0200231 </dependency>
RehanRaza0e3740a2020-08-03 15:56:03 +0200232 </dependencies>
233 <build>
234 <plugins>
235 <plugin>
Dan Timoneybf5e4cd2022-12-01 17:02:22 -0500236 <groupId>org.codehaus.gmaven</groupId>
237 <artifactId>groovy-maven-plugin</artifactId>
Dan Timoneyefdb5b02020-11-02 11:00:33 -0500238 <executions>
239 <execution>
240 <phase>validate</phase>
241 <goals>
242 <goal>execute</goal>
243 </goals>
244 <configuration>
245 <source>${basedir}/TagVersion.groovy</source>
246 </configuration>
247 </execution>
248 </executions>
249 </plugin>
250 <plugin>
RehanRaza0e3740a2020-08-03 15:56:03 +0200251 <groupId>org.springframework.boot</groupId>
252 <artifactId>spring-boot-maven-plugin</artifactId>
253 </plugin>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400254 <plugin>
RehanRaza0e3740a2020-08-03 15:56:03 +0200255 <groupId>net.revelc.code.formatter</groupId>
256 <artifactId>formatter-maven-plugin</artifactId>
257 <version>${formatter-maven-plugin.version}</version>
258 <configuration>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400259 <lineEnding>LF</lineEnding>
RehanRaza0e3740a2020-08-03 15:56:03 +0200260 <configFile>${project.basedir}/eclipse-formatter.xml</configFile>
261 </configuration>
262 <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
263 spotless:apply process-sources -->
264 </plugin>
265 <plugin>
266 <groupId>com.diffplug.spotless</groupId>
267 <artifactId>spotless-maven-plugin</artifactId>
268 <version>${spotless-maven-plugin.version}</version>
269 <configuration>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400270 <lineEndings>UNIX</lineEndings>
RehanRaza0e3740a2020-08-03 15:56:03 +0200271 <java>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400272 <removeUnusedImports/>
RehanRaza0e3740a2020-08-03 15:56:03 +0200273 <importOrder>
274 <order>com,java,javax,org</order>
275 </importOrder>
276 </java>
277 </configuration>
278 <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
279 mvn spotless:apply to rewrite source files use mvn spotless:check to validate
280 source files -->
281 </plugin>
282 <plugin>
283 <groupId>org.apache.maven.plugins</groupId>
284 <artifactId>maven-surefire-plugin</artifactId>
elinuxhenrik9c3a6bd2020-08-26 14:04:17 +0200285 <version>${surefire-maven-plugin.version}</version>
RehanRaza0e3740a2020-08-03 15:56:03 +0200286 <configuration>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000287 <skipTests>${allowskiptests}</skipTests>
halil.cakal40ce8292023-02-02 12:25:13 +0000288 <statelessTestsetReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5Xml30StatelessReporter">
289 <disable>false</disable>
290 <version>3.0</version>
291 <usePhrasedFileName>false</usePhrasedFileName>
292 <usePhrasedTestSuiteClassName>true</usePhrasedTestSuiteClassName>
293 <usePhrasedTestCaseClassName>true</usePhrasedTestCaseClassName>
294 <usePhrasedTestCaseMethodName>true</usePhrasedTestCaseMethodName>
295 </statelessTestsetReporter>
296 <consoleOutputReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5ConsoleOutputReporter">
297 <disable>false</disable>
298 <encoding>UTF-8</encoding>
299 <usePhrasedFileName>false</usePhrasedFileName>
300 </consoleOutputReporter>
301 <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoReporter">
302 <disable>false</disable>
303 <usePhrasedFileName>false</usePhrasedFileName>
304 <usePhrasedClassNameInRunning>true</usePhrasedClassNameInRunning>
305 <usePhrasedClassNameInTestCaseSummary>true</usePhrasedClassNameInTestCaseSummary>
306 </statelessTestsetInfoReporter>
RehanRaza0e3740a2020-08-03 15:56:03 +0200307 </configuration>
308 </plugin>
309 <plugin>
310 <artifactId>maven-failsafe-plugin</artifactId>
311 </plugin>
312 <plugin>
313 <groupId>org.codehaus.mojo</groupId>
314 <artifactId>build-helper-maven-plugin</artifactId>
315 <executions>
316 <execution>
317 <id>add-source</id>
318 <phase>generate-sources</phase>
319 <goals>
320 <goal>add-source</goal>
321 </goals>
322 <configuration>
323 <sources>
324 <source>${project.build.directory}/generated-sources/annotations/</source>
325 </sources>
326 </configuration>
327 </execution>
328 </executions>
329 </plugin>
330 <plugin>
331 <groupId>org.jacoco</groupId>
332 <artifactId>jacoco-maven-plugin</artifactId>
333 <version>${jacoco-maven-plugin.version}</version>
334 <executions>
335 <execution>
336 <id>default-prepare-agent</id>
337 <goals>
338 <goal>prepare-agent</goal>
339 </goals>
340 </execution>
341 <execution>
342 <id>default-report</id>
343 <phase>prepare-package</phase>
344 <goals>
345 <goal>report</goal>
346 </goals>
347 </execution>
348 </executions>
349 </plugin>
350 <plugin>
halil.cakalb4ed3332023-01-20 12:14:08 +0000351 <groupId>org.openapitools</groupId>
352 <artifactId>openapi-generator-maven-plugin</artifactId>
353 <version>6.0.0</version>
elinuxhenrikf28594d2020-12-07 14:54:19 +0100354 <executions>
355 <execution>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000356 <id>generate-openapi-html</id>
357 <phase>prepare-package</phase>
elinuxhenrikf28594d2020-12-07 14:54:19 +0100358 <goals>
359 <goal>generate</goal>
360 </goals>
361 <configuration>
362 <inputSpec>${project.basedir}/api/pms-api.json</inputSpec>
halil.cakalb4ed3332023-01-20 12:14:08 +0000363 <generatorName>html2</generatorName>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000364 <output>${project.basedir}/api/pms-api</output>
halil.cakalb4ed3332023-01-20 12:14:08 +0000365 <skipOperationExample>false</skipOperationExample>
366 <strictSpec>false</strictSpec>
elinuxhenrikf28594d2020-12-07 14:54:19 +0100367 <configOptions>
halil.cakalb4ed3332023-01-20 12:14:08 +0000368 <appDescription>The O-RAN Non-RT RIC Policy Management Service provides a REST API for managing O-RAN A1 Policies.</appDescription>
369 <appName>ONAP CCSDK A1 Policy Management Service</appName>
370 <infoUrl>https://wiki.onap.org/display/DW/O-RAN+A1+Policies+in+ONAP</infoUrl>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000371 <licenseInfo>Copyright (C) 2020-2023 Nordix Foundation. Licensed under the Apache License.</licenseInfo>
halil.cakalb4ed3332023-01-20 12:14:08 +0000372 <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000373 </configOptions>
374 </configuration>
375 </execution>
376 <execution>
377 <id>generate-openapi-yaml</id>
378 <phase>prepare-package</phase>
379 <goals>
380 <goal>generate</goal>
381 </goals>
382 <configuration>
383 <inputSpec>${project.basedir}/api/pms-api.json</inputSpec>
384 <generatorName>openapi-yaml</generatorName>
385 <verbose>false</verbose>
386 <output>${project.basedir}/api</output>
387 <configOptions>
elinuxhenrikf28594d2020-12-07 14:54:19 +0100388 <outputFile>pms-api.yaml</outputFile>
389 </configOptions>
390 </configuration>
391 </execution>
392 </executions>
393 </plugin>
394 <plugin>
PatrikBuhr1122b012021-01-20 12:21:52 +0100395 <artifactId>maven-resources-plugin</artifactId>
396 <executions>
397 <execution>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000398 <id>copy-resource-openapi</id>
399 <phase>package</phase>
PatrikBuhr1122b012021-01-20 12:21:52 +0100400 <goals>
401 <goal>copy-resources</goal>
402 </goals>
403 <configuration>
404 <outputDirectory>${project.basedir}/../docs/offeredapis/swagger</outputDirectory>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000405 <verbose>true</verbose>
PatrikBuhr1122b012021-01-20 12:21:52 +0100406 <resources>
407 <resource>
408 <directory>${project.basedir}/api</directory>
409 <includes>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000410 <include>pms-api.json</include>
411 <include>pms-api.yaml</include>
412 </includes>
413 </resource>
414 </resources>
415 </configuration>
416 </execution>
417 <execution>
418 <id>copy-resource-openapi-html</id>
419 <phase>package</phase>
420 <goals>
421 <goal>copy-resources</goal>
422 </goals>
423 <configuration>
424 <verbose>true</verbose>
425 <outputDirectory>${project.basedir}/../docs/offeredapis/openapitoolgen/offeredapis/pms-api</outputDirectory>
426 <resources>
427 <resource>
428 <directory>${project.basedir}/api/pms-api</directory>
429 <includes>
halil.cakalb4ed3332023-01-20 12:14:08 +0000430 <include>index.html</include>
PatrikBuhr1122b012021-01-20 12:21:52 +0100431 </includes>
432 </resource>
433 </resources>
434 </configuration>
435 </execution>
436 </executions>
437 </plugin>
438 <plugin>
RehanRaza0e3740a2020-08-03 15:56:03 +0200439 <groupId>io.fabric8</groupId>
440 <artifactId>docker-maven-plugin</artifactId>
441 <version>${docker-maven-plugin}</version>
442 <inherited>false</inherited>
443 <executions>
444 <execution>
445 <id>generate-policy-management-service-image</id>
446 <phase>package</phase>
447 <goals>
448 <goal>build</goal>
449 </goals>
450 <configuration>
451 <images>
452 <image>
453 <name>onap/ccsdk-oran-a1policymanagementservice:${project.version}</name>
454 <build>
455 <cleanup>try</cleanup>
456 <contextDir>${basedir}</contextDir>
457 <dockerFile>Dockerfile</dockerFile>
458 <args>
459 <JAR>${project.build.finalName}.jar</JAR>
460 </args>
461 <tags>
462 <tag>${project.version}</tag>
463 </tags>
464 </build>
465 </image>
466 </images>
467 </configuration>
468 </execution>
469 <execution>
470 <id>push-policy-management-service-image</id>
471 <goals>
472 <goal>build</goal>
473 <goal>push</goal>
474 </goals>
475 <configuration>
476 <images>
477 <image>
478 <name>onap/ccsdk-oran-a1policymanagementservice:${project.version}</name>
479 <build>
480 <contextDir>${basedir}</contextDir>
481 <dockerFile>Dockerfile</dockerFile>
482 <args>
483 <JAR>${project.build.finalName}.jar</JAR>
484 </args>
485 <tags>
Dan Timoneyefdb5b02020-11-02 11:00:33 -0500486 <tag>${project.docker.latestminortag.version}</tag>
487 <tag>${project.docker.latestfulltag.version}</tag>
488 <tag>${project.docker.latesttagtimestamp.version}</tag>
RehanRaza0e3740a2020-08-03 15:56:03 +0200489 </tags>
490 </build>
491 </image>
492 </images>
493 </configuration>
494 </execution>
495 </executions>
496 </plugin>
497 </plugins>
498 </build>
halil.cakal40ce8292023-02-02 12:25:13 +0000499 <reporting>
500 <plugins>
501 <plugin>
502 <groupId>org.apache.maven.plugins</groupId>
503 <artifactId>maven-surefire-report-plugin</artifactId>
504 <version>${surefire-report-plugin.version}</version>
505 </plugin>
506 </plugins>
507 </reporting>
JohnKeeneye251d0c2023-02-20 18:00:44 +0000508</project>