blob: dfb85552e919d7b3ad9f722de3a3692c3e13299b [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
23<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">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>binding-parent</artifactId>
Dan Timoneyc90cbbd2020-09-10 08:27:56 -040029 <version>2.0.1</version>
Lathisha682c322020-07-30 15:52:12 +010030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.oran</groupId>
34 <artifactId>a1-adapter-provider</artifactId>
35 <version>1.0.0-SNAPSHOT</version>
36 <packaging>bundle</packaging>
37
38 <name>ccsdk-oran :: ${project.artifactId}</name>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040039
Lathish923196e2020-08-20 09:59:39 +010040 <properties>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040041 <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
Lathish923196e2020-08-20 09:59:39 +010042 </properties>
Lathisha682c322020-07-30 15:52:12 +010043
44 <dependencyManagement>
45 <dependencies>
46 <dependency>
47 <groupId>org.opendaylight.controller</groupId>
48 <artifactId>mdsal-artifacts</artifactId>
49 <version>1.6.1</version>
50 <type>pom</type>
51 <scope>import</scope>
52 </dependency>
Lathisha682c322020-07-30 15:52:12 +010053 <dependency>
54 <groupId>org.onap.ccsdk.sli.core</groupId>
55 <artifactId>sli-core-artifacts</artifactId>
56 <version>${ccsdk.sli.core.version}</version>
57 <type>pom</type>
58 <scope>import</scope>
59 </dependency>
Lathisha682c322020-07-30 15:52:12 +010060 </dependencies>
61 </dependencyManagement>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040062
Lathisha682c322020-07-30 15:52:12 +010063 <dependencies>
64 <dependency>
65 <groupId>org.onap.ccsdk.oran</groupId>
66 <artifactId>a1-adapter-model</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.opendaylight.controller</groupId>
71 <artifactId>sal-binding-api</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.opendaylight.controller</groupId>
75 <artifactId>sal-common-util</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.opendaylight.controller</groupId>
79 <artifactId>sal-core-api</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.opendaylight.yangtools</groupId>
83 <artifactId>yang-data-impl</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>junit</groupId>
87 <artifactId>junit</artifactId>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.mockito</groupId>
92 <artifactId>mockito-core</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.onap.ccsdk.sli.core</groupId>
97 <artifactId>sli-common</artifactId>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.onap.ccsdk.sli.core</groupId>
102 <artifactId>sli-provider</artifactId>
103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.onap.ccsdk.sli.core</groupId>
107 <artifactId>utils-provider</artifactId>
108 <!-- <version>${sdnctl.sli.version}</version> -->
109 </dependency>
Lathisha682c322020-07-30 15:52:12 +0100110 </dependencies>
111
112 <build>
113 <pluginManagement>
114 <plugins>
115 <plugin>
116 <groupId>org.eclipse.m2e</groupId>
117 <artifactId>lifecycle-mapping</artifactId>
118 <version>1.0.0</version>
119 <configuration>
120 <lifecycleMappingMetadata>
121 <pluginExecutions>
122 <pluginExecution>
123 <pluginExecutionFilter>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>properties-maven-plugin</artifactId>
126 <versionRange>[1.0.0,)</versionRange>
127 <goals>
128 <goal>set-system-properties</goal>
129 </goals>
130 </pluginExecutionFilter>
131 <action>
132 <execute/>
133 </action>
134 </pluginExecution>
135 </pluginExecutions>
136 </lifecycleMappingMetadata>
137 </configuration>
138 </plugin>
Lathish5d0ad5f2020-08-06 10:19:33 +0100139 <plugin>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-javadoc-plugin</artifactId>
142 <configuration>
143 <source>8</source>
144 </configuration>
145 </plugin>
Lathisha682c322020-07-30 15:52:12 +0100146 </plugins>
147 </pluginManagement>
148 </build>
149</project>