blob: ef3a0b6245ffa398cb21c07881a20d05e5e4d521 [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
27 <parent>
28 <groupId>org.onap.ccsdk.parent</groupId>
29 <artifactId>binding-parent</artifactId>
Dan Timoneyb5f85fe2024-08-08 16:11:30 -040030 <version>2.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040031 <relativePath/>
32 </parent>
33
34 <groupId>org.onap.ccsdk.oran</groupId>
35 <artifactId>a1-adapter-model</artifactId>
JohnKeeneyd31b23f2024-06-20 19:10:40 +010036 <version>1.8.0-SNAPSHOT</version>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040037 <packaging>bundle</packaging>
38
39 <name>ccsdk-oran :: ${project.artifactId}</name>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
Dan Timoneyb5f85fe2024-08-08 16:11:30 -040044 <artifactId>rfc6991-ietf-inet-types</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
48 <artifactId>rfc6991-ietf-yang-types</artifactId>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040049 </dependency>
50 </dependencies>
51
52 <build>
53 <pluginManagement>
54 <plugins>
55 <plugin>
56 <groupId>org.eclipse.m2e</groupId>
57 <artifactId>lifecycle-mapping</artifactId>
58 <version>1.0.0</version>
59 <configuration>
60 <lifecycleMappingMetadata>
61 <pluginExecutions>
62 <pluginExecution>
63 <pluginExecutionFilter>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>properties-maven-plugin</artifactId>
66 <versionRange>[1.0.0,)</versionRange>
67 <goals>
68 <goal>set-system-properties</goal>
69 </goals>
70 </pluginExecutionFilter>
71 <action>
72 <execute/>
73 </action>
74 </pluginExecution>
75 </pluginExecutions>
76 </lifecycleMappingMetadata>
77 </configuration>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-javadoc-plugin</artifactId>
82 <configuration>
83 <source>8</source>
84 </configuration>
85 </plugin>
86 </plugins>
87 </pluginManagement>
88 </build>
Dan Timoneyc90cbbd2020-09-10 08:27:56 -040089</project>