blob: e2d52877e1b45970bd2eb4978e98d87c8e32ac8c [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 Timoney5399db22020-09-15 11:28:06 -040029 <version>2.1.0-SNAPSHOT</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>
Dan Timoney5399db22020-09-15 11:28:06 -040035 <version>1.1.0-SNAPSHOT</version>
Lathisha682c322020-07-30 15:52:12 +010036 <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>
elinuxhenrik85d051e2020-09-10 12:46:50 +020042 <junit-jupiter-engine.version>5.6.0</junit-jupiter-engine.version>
43 <mockito-junit-jupiter.version>3.5.10</mockito-junit-jupiter.version>
Lathish923196e2020-08-20 09:59:39 +010044 </properties>
Lathisha682c322020-07-30 15:52:12 +010045
46 <dependencyManagement>
47 <dependencies>
48 <dependency>
49 <groupId>org.opendaylight.controller</groupId>
50 <artifactId>mdsal-artifacts</artifactId>
51 <version>1.6.1</version>
52 <type>pom</type>
53 <scope>import</scope>
54 </dependency>
Lathisha682c322020-07-30 15:52:12 +010055 <dependency>
56 <groupId>org.onap.ccsdk.sli.core</groupId>
57 <artifactId>sli-core-artifacts</artifactId>
58 <version>${ccsdk.sli.core.version}</version>
59 <type>pom</type>
60 <scope>import</scope>
61 </dependency>
Lathisha682c322020-07-30 15:52:12 +010062 </dependencies>
63 </dependencyManagement>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -040064
Lathisha682c322020-07-30 15:52:12 +010065 <dependencies>
66 <dependency>
67 <groupId>org.onap.ccsdk.oran</groupId>
68 <artifactId>a1-adapter-model</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.opendaylight.controller</groupId>
73 <artifactId>sal-binding-api</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.opendaylight.controller</groupId>
77 <artifactId>sal-common-util</artifactId>
78 </dependency>
79 <dependency>
80 <groupId>org.opendaylight.controller</groupId>
81 <artifactId>sal-core-api</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.opendaylight.yangtools</groupId>
85 <artifactId>yang-data-impl</artifactId>
86 </dependency>
87 <dependency>
elinuxhenrik85d051e2020-09-10 12:46:50 +020088 <groupId>org.opendaylight.yangtools</groupId>
89 <artifactId>concepts</artifactId>
Lathisha682c322020-07-30 15:52:12 +010090 </dependency>
91 <dependency>
elinuxhenrik85d051e2020-09-10 12:46:50 +020092 <groupId>org.apache.httpcomponents</groupId>
93 <artifactId>httpclient</artifactId>
Lathisha682c322020-07-30 15:52:12 +010094 </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>
elinuxhenrik85d051e2020-09-10 12:46:50 +0200108 </dependency>
109 <dependency>
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
112 <scope>test</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.mockito</groupId>
116 <artifactId>mockito-core</artifactId>
117 <scope>test</scope>
118 </dependency>
119 <dependency>
120 <groupId>org.junit.jupiter</groupId>
121 <artifactId>junit-jupiter-engine</artifactId>
122 <version>${junit-jupiter-engine.version}</version>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.mockito</groupId>
127 <artifactId>mockito-junit-jupiter</artifactId>
128 <version>${mockito-junit-jupiter.version}</version>
129 <scope>test</scope>
Lathisha682c322020-07-30 15:52:12 +0100130 </dependency>
Lathisha682c322020-07-30 15:52:12 +0100131 </dependencies>
132
133 <build>
134 <pluginManagement>
135 <plugins>
136 <plugin>
137 <groupId>org.eclipse.m2e</groupId>
138 <artifactId>lifecycle-mapping</artifactId>
139 <version>1.0.0</version>
140 <configuration>
141 <lifecycleMappingMetadata>
142 <pluginExecutions>
143 <pluginExecution>
144 <pluginExecutionFilter>
145 <groupId>org.codehaus.mojo</groupId>
146 <artifactId>properties-maven-plugin</artifactId>
147 <versionRange>[1.0.0,)</versionRange>
148 <goals>
149 <goal>set-system-properties</goal>
150 </goals>
151 </pluginExecutionFilter>
152 <action>
153 <execute/>
154 </action>
155 </pluginExecution>
156 </pluginExecutions>
157 </lifecycleMappingMetadata>
158 </configuration>
159 </plugin>
Lathish5d0ad5f2020-08-06 10:19:33 +0100160 <plugin>
Singal, Kapil (ks220y)7788a0b2020-09-03 16:24:57 -0400161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-javadoc-plugin</artifactId>
163 <configuration>
164 <source>8</source>
165 </configuration>
166 </plugin>
Lathisha682c322020-07-30 15:52:12 +0100167 </plugins>
168 </pluginManagement>
169 </build>
170</project>