A1-PMS Add A1-Mediator Custom Adapter (Release I)
[nonrtric/plt/a1policymanagementservice.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 210486a..c086f58 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
 * O-RAN-SC
 * %%
 * Copyright (C) 2019-2023: Nordix Foundation
-* Copyright (C) 2023: OpenInfra Foundation Europe
+* Copyright (C) 2023-2024: OpenInfra Foundation Europe
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
         <dependency>
             <groupId>com.google.code.gson</groupId>
             <artifactId>gson</artifactId>
-            <version>${gson.version}</version>
         </dependency>
         <dependency>
             <groupId>org.json</groupId>
             <version>${springdoc.openapi-ui.version}</version>
         </dependency>
         <!-- TEST -->
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-test</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-test</artifactId>
                 <artifactId>build-helper-maven-plugin</artifactId>
                 <executions>
                     <execution>
-                        <id>add-source</id>
+                        <id>add-additional-source-dirs</id>
                         <phase>generate-sources</phase>
                         <goals>
                             <goal>add-source</goal>
                         <configuration>
                             <sources>
                                 <source>${project.build.directory}/generated-sources/annotations/</source>
+                                <source>${project.basedir}/add-src/main/java</source>
+                                <source>${project.basedir}/add-src/main/resources</source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>add-additional-testsource-dirs</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>add-test-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>${project.basedir}/add-src/test/java</source>
+                                <source>${project.basedir}/add-src/test/resources</source>
                             </sources>
                         </configuration>
                     </execution>