Release notes & Roll version after i-release 1.1.0 -> 1.2.0
[nonrtric/plt/ranpm.git] / datafilecollector / pom.xml
index 4dc55a7..7775900 100644 (file)
@@ -1,7 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
   ~ ============LICENSE_START=======================================================
-  ~ Copyright (C) 2023 Nordix Foundation
+  ~ Copyright (C) 2023 Nordix Foundation. All rights reserved.
+  ~ Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved.
   ~ ================================================================================
   ~ Licensed under the Apache License, Version 2.0 (the "License");
   ~ you may not use this file except in compliance with the License.
     <parent>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-parent</artifactId>
-        <version>3.0.4</version>
+        <version>3.2.0</version>
     </parent>
     <groupId>org.o-ran-sc.nonrtric.plt.ranpm</groupId>
-    <artifactId>datafile-app-server</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
+    <artifactId>datafile-collector</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
     <packaging>jar</packaging>
+    <name>NONRTRIC RAN PM Data File Collector</name>
+    <description>File Collector for collecting RAN PM files from RAN functions (O-RAN SC NONRTRIC)</description>
     <properties>
         <java.version>17</java.version>
         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
         <gson.version>2.9.1</gson.version>
+        <mockito.version>4.8.1</mockito.version>
         <docker-maven-plugin>0.30.0</docker-maven-plugin>
-        <jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
+        <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
         <springdoc.version>2.0.2</springdoc.version>
         <springdoc.openapi-ui.version>1.6.14</springdoc.openapi-ui.version>
         <exec.skip>true</exec.skip>
+
+        <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
+
     </properties>
     <dependencies>
         <dependency>
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-junit-jupiter</artifactId>
+            <version>${mockito.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-inline</artifactId>
+            <version>${mockito.version}</version>
             <scope>test</scope>
         </dependency>
         <dependency>
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.sonarsource.scanner.maven</groupId>
+                <artifactId>sonar-maven-plugin</artifactId>
+                <version>${sonar-maven-plugin.version}</version>
+            </plugin>
         </plugins>
     </build>
 </project>