blob: 82c1c7b3c7fce9d10c7b3a31547845888b27b38c [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 ~ ================================================================================
6 ~ Copyright (C) 2020 Nordix Foundation. All rights reserved.
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-->
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040022
Lathisha682c322020-07-30 15:52:12 +010023<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 -040024 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>binding-parent</artifactId>
Dan Timoney7f767b42020-11-25 16:17:55 -050029 <version>2.1.0</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-model</artifactId>
Dan Timoney7f767b42020-11-25 16:17:55 -050035 <version>1.1.1-SNAPSHOT</version>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040036 <packaging>bundle</packaging>
37
38 <name>ccsdk-oran :: ${project.artifactId}</name>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
43 <artifactId>rfc6991</artifactId>
44 </dependency>
45 </dependencies>
46
47 <build>
48 <pluginManagement>
49 <plugins>
50 <plugin>
51 <groupId>org.eclipse.m2e</groupId>
52 <artifactId>lifecycle-mapping</artifactId>
53 <version>1.0.0</version>
54 <configuration>
55 <lifecycleMappingMetadata>
56 <pluginExecutions>
57 <pluginExecution>
58 <pluginExecutionFilter>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>properties-maven-plugin</artifactId>
61 <versionRange>[1.0.0,)</versionRange>
62 <goals>
63 <goal>set-system-properties</goal>
64 </goals>
65 </pluginExecutionFilter>
66 <action>
67 <execute/>
68 </action>
69 </pluginExecution>
70 </pluginExecutions>
71 </lifecycleMappingMetadata>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-javadoc-plugin</artifactId>
77 <configuration>
78 <source>8</source>
79 </configuration>
80 </plugin>
81 </plugins>
82 </pluginManagement>
83 </build>
Dan Timoneyc90cbbd2020-09-10 08:27:56 -040084</project>