blob: f8bd386fc7f94632de59ff9a332815dcdf3c5f5c [file] [log] [blame]
Lathisha682c322020-07-30 15:52:12 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk oran
5 ~ ================================================================================
JohnKeeneyd31b23f2024-06-20 19:10:40 +01006 ~ Copyright (C) 2020-2023 Nordix Foundation. All rights reserved.
7 ~ Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.
Lathisha682c322020-07-30 15:52:12 +01008 ~ ================================================================================
9 ~ Licensed under the Apache License, Version 2.0 (the "License");
10 ~ you may not use this file except in compliance with the License.
11 ~ You may obtain a copy of the License at
12 ~
13 ~ http://www.apache.org/licenses/LICENSE-2.0
14 ~
15 ~ Unless required by applicable law or agreed to in writing, software
16 ~ distributed under the License is distributed on an "AS IS" BASIS,
17 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 ~ See the License for the specific language governing permissions and
19 ~ limitations under the License.
20 ~ ============LICENSE_END=======================================================
21 ~
22-->
Dan Timoneyb5f85fe2024-08-08 16:11:30 -040023
Lathisha682c322020-07-30 15:52:12 +010024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040025 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Dan Timoneyb5f85fe2024-08-08 16:11:30 -040029 <version>2.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.oran</groupId>
34 <artifactId>a1-adapter-api</artifactId>
JohnKeeneyd31b23f2024-06-20 19:10:40 +010035 <version>1.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040036 <packaging>pom</packaging>
37
38 <name>ccsdk-oran :: ${project.artifactId}</name>
39
40 <properties>
41 <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
42 </properties>
43
44 <modules>
45 <module>model</module>
46 <module>provider</module>
47 <module>feature</module>
48 <module>installer</module>
49 </modules>
50
51 <build>
52 <plugins>
53 <!-- support sonar in multi-module project -->
54 <plugin>
55 <groupId>org.sonarsource.scanner.maven</groupId>
56 <artifactId>sonar-maven-plugin</artifactId>
57 <version>${sonar-maven-plugin.version}</version>
58 </plugin>
59 </plugins>
60 </build>
Dan Timoneyc90cbbd2020-09-10 08:27:56 -040061</project>