Release nonrtric
[nonrtric.git] / enrichment-coordinator-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.4.2</version>
30         <relativePath />
31     </parent>
32     <groupId>org.o-ran-sc.nonrtric</groupId>
33     <artifactId>enrichment-coordinator-service</artifactId>
34     <version>1.1.0</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.6</swagger.version>
54         <json.version>20190722</json.version>
55         <commons-net.version>3.6</commons-net.version>
56         <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
57         <formatter-maven-plugin.version>2.12.2</formatter-maven-plugin.version>
58         <spotless-maven-plugin.version>1.24.3</spotless-maven-plugin.version>
59         <swagger-codegen-maven-plugin.version>3.0.11</swagger-codegen-maven-plugin.version>
60         <docker-maven-plugin>0.30.0</docker-maven-plugin>
61         <version.dmaap>1.1.11</version.dmaap>
62         <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
63         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
64         <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
65         <exec.skip>true</exec.skip>
66     </properties>
67     <dependencies>
68         <dependency>
69             <groupId>org.springdoc</groupId>
70             <artifactId>springdoc-openapi-ui</artifactId>
71             <version>1.5.4</version>
72         </dependency>
73         <dependency>
74             <groupId>org.springframework.boot</groupId>
75             <artifactId>spring-boot-starter-web</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-thymeleaf</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.springframework.boot</groupId>
83             <artifactId>spring-boot-starter-webflux</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.springframework</groupId>
87             <artifactId>spring-webflux</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>io.swagger.core.v3</groupId>
91             <artifactId>swagger-jaxrs2</artifactId>
92             <version>${swagger.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>io.swagger.core.v3</groupId>
96             <artifactId>swagger-jaxrs2-servlet-initializer</artifactId>
97             <version>${swagger.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>javax.xml.bind</groupId>
101             <artifactId>jaxb-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.immutables</groupId>
105             <artifactId>value</artifactId>
106             <version>${immutable.version}</version>
107             <scope>provided</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.immutables</groupId>
111             <artifactId>gson</artifactId>
112             <version>${immutable.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>org.json</groupId>
116             <artifactId>json</artifactId>
117             <version>${json.version}</version>
118         </dependency>
119         <dependency>
120             <groupId>commons-net</groupId>
121             <artifactId>commons-net</artifactId>
122             <version>${commons-net.version}</version>
123         </dependency>
124         <dependency>
125             <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
126             <artifactId>cbs-client</artifactId>
127             <version>${sdk.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.projectlombok</groupId>
131             <artifactId>lombok</artifactId>
132             <scope>provided</scope>
133         </dependency>
134         <dependency>
135             <groupId>javax.ws.rs</groupId>
136             <artifactId>javax.ws.rs-api</artifactId>
137             <version>${javax.ws.rs-api.version}</version>
138         </dependency>
139         <!-- https://mvnrepository.com/artifact/com.github.erosb/everit-json-schema -->
140         <dependency>
141             <groupId>com.github.erosb</groupId>
142             <artifactId>everit-json-schema</artifactId>
143             <version>1.12.1</version>
144         </dependency>
145         <!-- Actuator dependencies -->
146         <dependency>
147             <groupId>org.springframework.boot</groupId>
148             <artifactId>spring-boot-starter-actuator</artifactId>
149         </dependency>
150         <!--REQUIRED TO GENERATE DOCUMENTATION -->
151         <dependency>
152             <groupId>io.springfox</groupId>
153             <artifactId>springfox-swagger2</artifactId>
154             <version>${springfox.version}</version>
155         </dependency>
156         <dependency>
157             <groupId>io.springfox</groupId>
158             <artifactId>springfox-swagger-ui</artifactId>
159             <version>${springfox.version}</version>
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         </dependency>
167         <dependency>
168             <groupId>org.springframework.boot</groupId>
169             <artifactId>spring-boot-configuration-processor</artifactId>
170             <optional>true</optional>
171         </dependency>
172         <!-- TEST -->
173         <dependency>
174             <groupId>org.springframework.boot</groupId>
175             <artifactId>spring-boot-starter-test</artifactId>
176             <scope>test</scope>
177         </dependency>
178         <dependency>
179             <groupId>org.awaitility</groupId>
180             <artifactId>awaitility</artifactId>
181             <scope>test</scope>
182         </dependency>
183         <dependency>
184             <groupId>io.projectreactor</groupId>
185             <artifactId>reactor-test</artifactId>
186             <scope>test</scope>
187         </dependency>
188         <dependency>
189             <groupId>org.junit.jupiter</groupId>
190             <artifactId>junit-jupiter-engine</artifactId>
191             <scope>test</scope>
192         </dependency>
193         <dependency>
194             <groupId>org.mockito</groupId>
195             <artifactId>mockito-junit-jupiter</artifactId>
196             <scope>test</scope>
197         </dependency>
198         <dependency>
199             <groupId>org.mockito</groupId>
200             <artifactId>mockito-core</artifactId>
201             <scope>test</scope>
202         </dependency>
203         <dependency>
204             <groupId>com.squareup.okhttp3</groupId>
205             <artifactId>mockwebserver</artifactId>
206             <scope>test</scope>
207         </dependency>
208     </dependencies>
209     <build>
210         <plugins>
211             <plugin>
212                 <groupId>org.springframework.boot</groupId>
213                 <artifactId>spring-boot-maven-plugin</artifactId>
214             </plugin>
215             <plugin>
216                 <groupId>net.revelc.code.formatter</groupId>
217                 <artifactId>formatter-maven-plugin</artifactId>
218                 <version>${formatter-maven-plugin.version}</version>
219                 <configuration>
220                     <configFile>${project.basedir}/eclipse-formatter.xml</configFile>
221                 </configuration>
222                 <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
223                                         spotless:apply process-sources -->
224             </plugin>
225             <plugin>
226                 <groupId>com.diffplug.spotless</groupId>
227                 <artifactId>spotless-maven-plugin</artifactId>
228                 <version>${spotless-maven-plugin.version}</version>
229                 <configuration>
230                     <java>
231                         <removeUnusedImports />
232                         <importOrder>
233                             <order>com,java,javax,org</order>
234                         </importOrder>
235                     </java>
236                 </configuration>
237                 <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
238                                         mvn spotless:apply to rewrite source files use mvn spotless:check to validate
239                                         source files -->
240             </plugin>
241             <plugin>
242                 <groupId>org.apache.maven.plugins</groupId>
243                 <artifactId>maven-surefire-plugin</artifactId>
244                 <configuration>
245                     <skipTests>false</skipTests>
246                 </configuration>
247             </plugin>
248             <plugin>
249                 <artifactId>maven-failsafe-plugin</artifactId>
250             </plugin>
251             <plugin>
252                 <groupId>org.codehaus.mojo</groupId>
253                 <artifactId>build-helper-maven-plugin</artifactId>
254                 <executions>
255                     <execution>
256                         <id>add-source</id>
257                         <phase>generate-sources</phase>
258                         <goals>
259                             <goal>add-source</goal>
260                         </goals>
261                         <configuration>
262                             <sources>
263                                 <source>${project.build.directory}/generated-sources/annotations/</source>
264                             </sources>
265                         </configuration>
266                     </execution>
267                 </executions>
268             </plugin>
269             <plugin>
270                 <groupId>org.jacoco</groupId>
271                 <artifactId>jacoco-maven-plugin</artifactId>
272                 <version>${jacoco-maven-plugin.version}</version>
273                 <executions>
274                     <execution>
275                         <id>default-prepare-agent</id>
276                         <goals>
277                             <goal>prepare-agent</goal>
278                         </goals>
279                     </execution>
280                     <execution>
281                         <id>default-report</id>
282                         <phase>prepare-package</phase>
283                         <goals>
284                             <goal>report</goal>
285                         </goals>
286                     </execution>
287                 </executions>
288             </plugin>
289             <plugin>
290                 <groupId>io.swagger.codegen.v3</groupId>
291                 <artifactId>swagger-codegen-maven-plugin</artifactId>
292                 <version>${swagger-codegen-maven-plugin.version}</version>
293                 <executions>
294                     <execution>
295                         <phase>test</phase>
296                         <goals>
297                             <goal>generate</goal>
298                         </goals>
299                         <configuration>
300                             <inputSpec>${project.basedir}/api/ecs-api.json</inputSpec>
301                             <language>openapi-yaml</language>
302                             <output>${project.basedir}/api</output>
303                             <configOptions>
304                                 <outputFile>ecs-api.yaml</outputFile>
305                             </configOptions>
306                         </configuration>
307                     </execution>
308                 </executions>
309             </plugin>
310             <plugin>
311                 <groupId>io.fabric8</groupId>
312                 <artifactId>docker-maven-plugin</artifactId>
313                 <version>${docker-maven-plugin}</version>
314                 <inherited>false</inherited>
315                 <executions>
316                     <execution>
317                         <id>generate-enrichment-coordinator-service-image</id>
318                         <phase>package</phase>
319                         <goals>
320                             <goal>build</goal>
321                         </goals>
322                         <configuration>
323                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
324                             <images>
325                                 <image>
326                                     <name>o-ran-sc/nonrtric-enrichment-coordinator-service:${project.version}</name>
327                                     <build>
328                                         <cleanup>try</cleanup>
329                                         <contextDir>${basedir}</contextDir>
330                                         <dockerFile>Dockerfile</dockerFile>
331                                         <args>
332                                             <JAR>${project.build.finalName}.jar</JAR>
333                                         </args>
334                                         <tags>
335                                             <tag>${project.version}</tag>
336                                         </tags>
337                                     </build>
338                                 </image>
339                             </images>
340                         </configuration>
341                     </execution>
342                     <execution>
343                         <id>push-enrichment-coordinator-service-image</id>
344                         <goals>
345                             <goal>build</goal>
346                             <goal>push</goal>
347                         </goals>
348                         <configuration>
349                             <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
350                             <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
351                             <images>
352                                 <image>
353                                     <name>o-ran-sc/nonrtric-enrichment-coordinator-service:${project.version}</name>
354                                     <build>
355                                         <contextDir>${basedir}</contextDir>
356                                         <dockerFile>Dockerfile</dockerFile>
357                                         <args>
358                                             <JAR>${project.build.finalName}.jar</JAR>
359                                         </args>
360                                         <tags>
361                                             <tag>${project.version}</tag>
362                                             <tag>latest</tag>
363                                         </tags>
364                                     </build>
365                                 </image>
366                             </images>
367                         </configuration>
368                     </execution>
369                 </executions>
370             </plugin>
371             <!-- support sonar in multi-module project -->
372             <plugin>
373                 <groupId>org.sonarsource.scanner.maven</groupId>
374                 <artifactId>sonar-maven-plugin</artifactId>
375                 <version>${sonar-maven-plugin.version}</version>
376             </plugin>
377         </plugins>
378     </build>
379     <issueManagement>
380         <system>JIRA</system>
381         <url>https://jira.o-ran-sc.org/</url>
382     </issueManagement>
383 </project>