Add DME Participant
[nonrtric/plt/rappmanager.git] / participants / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * ========================LICENSE_START=================================
4 * O-RAN-SC
5 * %%
6 * Copyright (C) 2023 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.springframework.boot</groupId>
26         <artifactId>spring-boot-starter-parent</artifactId>
27         <version>3.1.5</version>
28         <relativePath/>
29     </parent>
30     <groupId>org.o-ran-sc.nonrtric.plt</groupId>
31     <artifactId>participants</artifactId>
32     <version>0.0.1-SNAPSHOT</version>
33     <packaging>pom</packaging>
34     <name>NONRTRIC ACM Participants</name>
35     <description>O-RAN SC ACM Participants.</description>
36     <modules>
37         <module>participant-impl-dme</module>
38     </modules>
39     <repositories>
40         <repository>
41             <id>onap-releases</id>
42             <name>onap-releases</name>
43             <url>https://nexus.onap.org/content/repositories/releases/</url>
44         </repository>
45     </repositories>
46     <properties>
47         <java.version>17</java.version>
48         <openapi.maven.version>7.0.1</openapi.maven.version>
49         <docker-maven-plugin>0.30.0</docker-maven-plugin>
50         <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
51         <onap.acm.models.version>7.0.1-SNAPSHOT</onap.acm.models.version>
52         <openapi.jackson.databind.nullable.version>0.2.6</openapi.jackson.databind.nullable.version>
53     </properties>
54     <build>
55         <plugins>
56             <plugin>
57                 <groupId>org.apache.maven.plugins</groupId>
58                 <artifactId>maven-surefire-plugin</artifactId>
59                 <configuration>
60                     <skipTests>false</skipTests>
61                 </configuration>
62             </plugin>
63             <plugin>
64                 <groupId>org.jacoco</groupId>
65                 <artifactId>jacoco-maven-plugin</artifactId>
66                 <version>${jacoco-maven-plugin.version}</version>
67                 <executions>
68                     <execution>
69                         <id>default-prepare-agent</id>
70                         <goals>
71                             <goal>prepare-agent</goal>
72                         </goals>
73                     </execution>
74                     <execution>
75                         <id>default-report</id>
76                         <phase>prepare-package</phase>
77                         <goals>
78                             <goal>report</goal>
79                         </goals>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84     </build>
85     <issueManagement>
86         <system>JIRA</system>
87         <url>https://jira.o-ran-sc.org/</url>
88     </issueManagement>
89 </project>