b90bb886a0987778cfac90cc4dffbdb2ab29b0af
[nonrtric.git] / a1-policy-management-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * ========================LICENSE_START=================================
4 * O-RAN-SC
5 * %%
6 * Copyright (C) 2019 Nordix Foundation
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 <project
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>
26     <parent>
27         <groupId>org.springframework.boot</groupId>
28         <artifactId>spring-boot-starter-parent</artifactId>
29         <version>2.6.2</version>
30         <relativePath />
31     </parent>
32     <groupId>org.o-ran-sc.nonrtric</groupId>
33     <artifactId>a1-policy-management-service</artifactId>
34     <version>2.4.0-SNAPSHOT</version>
35     <licenses>
36         <license>
37             <name>The Apache Software License, Version 2.0</name>
38             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39         </license>
40     </licenses>
41     <repositories>
42         <repository>
43             <id>onap-releases</id>
44             <name>onap-releases</name>
45             <url>https://nexus.onap.org/content/repositories/releases/</url>
46         </repository>
47     </repositories>
48     <properties>
49         <java.version>11</java.version>
50         <springfox.version>3.0.0</springfox.version>
51         <immutable.version>2.8.2</immutable.version>
52         <sdk.version>1.1.6</sdk.version>
53         <swagger.version>2.1.12</swagger.version>
54         <json.version>20190722</json.version>
55         <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
56         <formatter-maven-plugin.version>2.12.2</formatter-maven-plugin.version>
57         <spotless-maven-plugin.version>1.18.0</spotless-maven-plugin.version>
58         <docker-maven-plugin>0.30.0</docker-maven-plugin>
59         <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
60         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
61         <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
62         <exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
63     </properties>
64     <dependencies>
65         <dependency>
66             <groupId>commons-io</groupId>
67             <artifactId>commons-io</artifactId>
68             <version>2.11.0</version>
69         </dependency>
70         <dependency>
71             <groupId>com.google.guava</groupId>
72             <artifactId>guava</artifactId>
73             <version>30.0-jre</version>
74         </dependency>
75         <dependency>
76             <groupId>org.springdoc</groupId>
77             <artifactId>springdoc-openapi-ui</artifactId>
78             <version>1.6.3</version>
79         </dependency>
80         <dependency>
81             <groupId>org.springframework.boot</groupId>
82             <artifactId>spring-boot-starter-web</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.springframework.boot</groupId>
86             <artifactId>spring-boot-starter-thymeleaf</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.springframework.boot</groupId>
90             <artifactId>spring-boot-starter-webflux</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.springframework.boot</groupId>
94             <artifactId>spring-boot-starter-aop</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.springframework.boot</groupId>
98             <artifactId>spring-boot-devtools</artifactId>
99             <optional>true</optional>
100         </dependency>
101         <dependency>
102             <groupId>org.springframework</groupId>
103             <artifactId>spring-webflux</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>io.swagger.core.v3</groupId>
107             <artifactId>swagger-jaxrs2</artifactId>
108             <version>${swagger.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>io.swagger.core.v3</groupId>
112             <artifactId>swagger-jaxrs2-servlet-initializer</artifactId>
113             <version>${swagger.version}</version>
114         </dependency>
115         <dependency>
116             <groupId>javax.xml.bind</groupId>
117             <artifactId>jaxb-api</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.immutables</groupId>
121             <artifactId>value</artifactId>
122             <version>${immutable.version}</version>
123             <scope>provided</scope>
124         </dependency>
125         <dependency>
126             <groupId>org.immutables</groupId>
127             <artifactId>gson</artifactId>
128             <version>${immutable.version}</version>
129         </dependency>
130         <dependency>
131             <groupId>org.json</groupId>
132             <artifactId>json</artifactId>
133             <version>${json.version}</version>
134         </dependency>
135         <dependency>
136             <groupId>org.springframework.boot</groupId>
137             <artifactId>spring-boot-configuration-processor</artifactId>
138             <optional>true</optional>
139         </dependency>
140         <dependency>
141             <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
142             <artifactId>cbs-client</artifactId>
143             <version>${sdk.version}</version>
144         </dependency>
145         <dependency>
146             <groupId>org.projectlombok</groupId>
147             <artifactId>lombok</artifactId>
148             <scope>provided</scope>
149         </dependency>
150         <dependency>
151             <groupId>javax.ws.rs</groupId>
152             <artifactId>javax.ws.rs-api</artifactId>
153             <version>${javax.ws.rs-api.version}</version>
154         </dependency>
155         <dependency>
156             <groupId>org.glassfish.jersey.inject</groupId>
157             <artifactId>jersey-hk2</artifactId>
158         </dependency>
159         <!-- Actuator dependencies -->
160         <dependency>
161             <groupId>org.springframework.boot</groupId>
162             <artifactId>spring-boot-starter-actuator</artifactId>
163         </dependency>
164         <!--REQUIRED TO GENERATE DOCUMENTATION -->
165         <dependency>
166             <groupId>io.springfox</groupId>
167             <artifactId>springfox-swagger2</artifactId>
168             <version>${springfox.version}</version>
169         </dependency>
170         <dependency>
171             <groupId>io.springfox</groupId>
172             <artifactId>springfox-swagger-ui</artifactId>
173             <version>${springfox.version}</version>
174         </dependency>
175         <!-- TEST -->
176         <dependency>
177             <groupId>org.springframework.boot</groupId>
178             <artifactId>spring-boot-starter-test</artifactId>
179             <scope>test</scope>
180         </dependency>
181         <dependency>
182             <groupId>org.awaitility</groupId>
183             <artifactId>awaitility</artifactId>
184             <scope>test</scope>
185         </dependency>
186         <dependency>
187             <groupId>io.projectreactor</groupId>
188             <artifactId>reactor-test</artifactId>
189             <scope>test</scope>
190         </dependency>
191         <dependency>
192             <groupId>org.junit.jupiter</groupId>
193             <artifactId>junit-jupiter-engine</artifactId>
194             <scope>test</scope>
195         </dependency>
196         <dependency>
197             <groupId>org.mockito</groupId>
198             <artifactId>mockito-junit-jupiter</artifactId>
199             <scope>test</scope>
200         </dependency>
201         <dependency>
202             <groupId>org.mockito</groupId>
203             <artifactId>mockito-core</artifactId>
204             <scope>test</scope>
205         </dependency>
206         <dependency>
207             <groupId>com.squareup.okhttp3</groupId>
208             <artifactId>mockwebserver</artifactId>
209             <scope>test</scope>
210         </dependency>
211         <!-- https://mvnrepository.com/artifact/com.github.erosb/everit-json-schema -->
212         <dependency>
213             <groupId>com.github.erosb</groupId>
214             <artifactId>everit-json-schema</artifactId>
215             <version>1.13.0</version>
216         </dependency>
217     </dependencies>
218     <build>
219         <plugins>
220             <plugin>
221                 <groupId>org.springframework.boot</groupId>
222                 <artifactId>spring-boot-maven-plugin</artifactId>
223             </plugin>
224             <plugin>
225                 <groupId>net.revelc.code.formatter</groupId>
226                 <artifactId>formatter-maven-plugin</artifactId>
227                 <version>${formatter-maven-plugin.version}</version>
228                 <configuration>
229                     <configFile>${project.basedir}/eclipse-formatter.xml</configFile>
230                 </configuration>
231                 <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
232                                         spotless:apply process-sources -->
233             </plugin>
234             <plugin>
235                 <groupId>com.diffplug.spotless</groupId>
236                 <artifactId>spotless-maven-plugin</artifactId>
237                 <version>${spotless-maven-plugin.version}</version>
238                 <configuration>
239                     <java>
240                         <removeUnusedImports />
241                         <importOrder>
242                             <order>com,java,javax,org</order>
243                         </importOrder>
244                     </java>
245                 </configuration>
246                 <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
247                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate
248                                         source files -->
249             </plugin>
250             <plugin>
251                 <groupId>org.apache.maven.plugins</groupId>
252                 <artifactId>maven-surefire-plugin</artifactId>
253                 <configuration>
254                     <skipTests>false</skipTests>
255                 </configuration>
256             </plugin>
257             <plugin>
258                 <artifactId>maven-failsafe-plugin</artifactId>
259             </plugin>
260             <plugin>
261                 <groupId>org.codehaus.mojo</groupId>
262                 <artifactId>build-helper-maven-plugin</artifactId>
263                 <executions>
264                     <execution>
265                         <id>add-source</id>
266                         <phase>generate-sources</phase>
267                         <goals>
268                             <goal>add-source</goal>
269                         </goals>
270                         <configuration>
271                             <sources>
272                                 <source>${project.build.directory}/generated-sources/annotations/</source>
273                             </sources>
274                         </configuration>
275                     </execution>
276                 </executions>
277             </plugin>
278             <plugin>
279                 <groupId>org.jacoco</groupId>
280                 <artifactId>jacoco-maven-plugin</artifactId>
281                 <version>${jacoco-maven-plugin.version}</version>
282                 <executions>
283                     <execution>
284                         <id>default-prepare-agent</id>
285                         <goals>
286                             <goal>prepare-agent</goal>
287                         </goals>
288                     </execution>
289                     <execution>
290                         <id>default-report</id>
291                         <phase>prepare-package</phase>
292                         <goals>
293                             <goal>report</goal>
294                         </goals>
295                     </execution>
296                 </executions>
297             </plugin>
298             <plugin>
299                 <groupId>io.fabric8</groupId>
300                 <artifactId>docker-maven-plugin</artifactId>
301                 <version>${docker-maven-plugin}</version>
302                 <inherited>false</inherited>
303                 <executions>
304                     <execution>
305                         <id>generate-a1-policy-management-service-image</id>
306                         <phase>package</phase>
307                         <goals>
308                             <goal>build</goal>
309                         </goals>
310                         <configuration>
311                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
312                             <images>
313                                 <image>
314                                     <name>o-ran-sc/nonrtric-a1-policy-management-service:${project.version}</name>
315                                     <build>
316                                         <cleanup>try</cleanup>
317                                         <contextDir>${basedir}</contextDir>
318                                         <dockerFile>Dockerfile</dockerFile>
319                                         <args>
320                                             <JAR>${project.build.finalName}.jar</JAR>
321                                         </args>
322                                         <tags>
323                                             <tag>${project.version}</tag>
324                                         </tags>
325                                     </build>
326                                 </image>
327                             </images>
328                         </configuration>
329                     </execution>
330                     <execution>
331                         <id>push-a1-policy-management-service-image</id>
332                         <goals>
333                             <goal>build</goal>
334                             <goal>push</goal>
335                         </goals>
336                         <configuration>
337                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
338                             <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
339                             <images>
340                                 <image>
341                                     <name>o-ran-sc/nonrtric-a1-policy-management-service:${project.version}</name>
342                                     <build>
343                                         <contextDir>${basedir}</contextDir>
344                                         <dockerFile>Dockerfile</dockerFile>
345                                         <args>
346                                             <JAR>${project.build.finalName}.jar</JAR>
347                                         </args>
348                                         <tags>
349                                             <tag>${project.version}</tag>
350                                             <tag>latest</tag>
351                                         </tags>
352                                     </build>
353                                 </image>
354                             </images>
355                         </configuration>
356                     </execution>
357                 </executions>
358             </plugin>
359             <!-- support sonar in multi-module project -->
360             <plugin>
361                 <groupId>org.sonarsource.scanner.maven</groupId>
362                 <artifactId>sonar-maven-plugin</artifactId>
363                 <version>${sonar-maven-plugin.version}</version>
364             </plugin>
365             <plugin>
366                 <groupId>org.codehaus.mojo</groupId>
367                 <artifactId>exec-maven-plugin</artifactId>
368                 <version>${exec-maven-plugin.version}</version>
369                 <executions>
370                     <execution>
371                         <id>git submodule update</id>
372                         <phase>initialize</phase>
373                         <configuration>
374                             <executable>git</executable>
375                             <arguments>
376                                 <argument>submodule</argument>
377                                 <argument>update</argument>
378                                 <argument>--init</argument>
379                                 <argument>--recursive</argument>
380                             </arguments>
381                         </configuration>
382                         <goals>
383                             <goal>exec</goal>
384                         </goals>
385                     </execution>
386                     <execution>
387                         <id>copy configuration</id>
388                         <phase>initialize</phase>
389                         <configuration>
390                             <executable>cp</executable>
391                             <arguments>
392                                 <argument>-r</argument>
393                                 <argument>../onap/oran/a1-policy-management/config</argument>
394                                 <argument>.</argument>
395                             </arguments>
396                         </configuration>
397                         <goals>
398                             <goal>exec</goal>
399                         </goals>
400                     </execution>
401                 </executions>
402             </plugin>
403         </plugins>
404     </build>
405     <issueManagement>
406         <system>JIRA</system>
407         <url>https://jira.o-ran-sc.org/</url>
408     </issueManagement>
409 </project>