blob: 3c90faff260ac9d766c973ff123e0626b1b6f0d8 [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-->
22<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">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.ccsdk.parent</groupId>
26 <artifactId>binding-parent</artifactId>
27 <version>2.0.0-SNAPSHOT</version>
28 <relativePath />
29 </parent>
30 <groupId>org.onap.ccsdk.oran</groupId>
31 <artifactId>a1-adapter-model</artifactId>
32 <version>1.0.0-SNAPSHOT</version>
33 <packaging>bundle</packaging>
34 <name>ccsdk-oran :: ${project.artifactId}</name>
35 <dependencies>
36 <dependency>
37 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
38 <artifactId>rfc6991</artifactId>
39 </dependency>
40 </dependencies>
41 <build>
42 <pluginManagement>
43 <plugins>
44 <plugin>
45 <groupId>org.eclipse.m2e</groupId>
46 <artifactId>lifecycle-mapping</artifactId>
47 <version>1.0.0</version>
48 <configuration>
49 <lifecycleMappingMetadata>
50 <pluginExecutions>
51 <pluginExecution>
52 <pluginExecutionFilter>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>properties-maven-plugin</artifactId>
55 <versionRange>[1.0.0,)</versionRange>
56 <goals>
57 <goal>set-system-properties</goal>
58 </goals>
59 </pluginExecutionFilter>
60 <action>
61 <execute />
62 </action>
63 </pluginExecution>
64 </pluginExecutions>
65 </lifecycleMappingMetadata>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-javadoc-plugin</artifactId>
71 <configuration>
72 <source>8</source>
73 </configuration>
74 </plugin>
75 </plugins>
76 </pluginManagement>
77 </build>
78</project>