Add snapshot repository
[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         <repository>
46             <id>onap-snapshots</id>
47             <name>onap-snapshots</name>
48             <url>https://nexus.onap.org/content/repositories/snapshots/</url>
49         </repository>
50     </repositories>
51     <properties>
52         <java.version>17</java.version>
53         <openapi.maven.version>7.0.1</openapi.maven.version>
54         <docker-maven-plugin>0.30.0</docker-maven-plugin>
55         <jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
56         <onap.acm.models.version>7.0.3-SNAPSHOT</onap.acm.models.version>
57         <openapi.jackson.databind.nullable.version>0.2.6</openapi.jackson.databind.nullable.version>
58     </properties>
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.apache.maven.plugins</groupId>
63                 <artifactId>maven-surefire-plugin</artifactId>
64                 <configuration>
65                     <skipTests>false</skipTests>
66                 </configuration>
67             </plugin>
68             <plugin>
69                 <groupId>org.jacoco</groupId>
70                 <artifactId>jacoco-maven-plugin</artifactId>
71                 <version>${jacoco-maven-plugin.version}</version>
72                 <executions>
73                     <execution>
74                         <id>default-prepare-agent</id>
75                         <goals>
76                             <goal>prepare-agent</goal>
77                         </goals>
78                     </execution>
79                     <execution>
80                         <id>default-report</id>
81                         <phase>prepare-package</phase>
82                         <goals>
83                             <goal>report</goal>
84                         </goals>
85                     </execution>
86                 </executions>
87             </plugin>
88         </plugins>
89     </build>
90     <issueManagement>
91         <system>JIRA</system>
92         <url>https://jira.o-ran-sc.org/</url>
93     </issueManagement>
94 </project>