Fix version of sli
[ccsdk/oran.git] / a1-adapter / a1-adapter-api / provider / pom.xml
1 <?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
25     <parent>
26         <groupId>org.onap.ccsdk.parent</groupId>
27         <artifactId>binding-parent</artifactId>
28         <version>2.2.0</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.oran</groupId>
33     <artifactId>a1-adapter-provider</artifactId>
34     <version>1.2.1-SNAPSHOT</version>
35     <packaging>bundle</packaging>
36
37     <name>ccsdk-oran :: ${project.artifactId}</name>
38
39     <properties>
40         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
41         <junit-jupiter-engine.version>5.6.0</junit-jupiter-engine.version>
42         <mockito-junit-jupiter.version>3.5.10</mockito-junit-jupiter.version>
43         <ccsdk.sli.core.version>1.3.1</ccsdk.sli.core.version>
44     </properties>
45
46     <dependencyManagement>
47         <dependencies>
48             <dependency>
49                 <groupId>org.onap.ccsdk.sli.core</groupId>
50                 <artifactId>sli-core-artifacts</artifactId>
51                 <version>${ccsdk.sli.core.version}</version>
52                 <type>pom</type>
53                 <scope>import</scope>
54             </dependency>
55         </dependencies>
56     </dependencyManagement>
57
58     <dependencies>
59         <dependency>
60             <groupId>org.onap.ccsdk.oran</groupId>
61             <artifactId>a1-adapter-model</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal</groupId>
66             <artifactId>mdsal-binding-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-binding-test-model</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal</groupId>
75             <artifactId>mdsal-binding-test-utils</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal</groupId>
80             <artifactId>mdsal-binding-dom-adapter</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-data-impl</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>concepts</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.apache.httpcomponents</groupId>
93             <artifactId>httpclient</artifactId>
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         </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>
130         </dependency>
131     </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>
160                 <plugin>
161                     <groupId>org.apache.maven.plugins</groupId>
162                     <artifactId>maven-javadoc-plugin</artifactId>
163                     <configuration>
164                         <source>8</source>
165                     </configuration>
166                 </plugin>
167             </plugins>
168         </pluginManagement>
169         <plugins>
170             <plugin>
171                 <artifactId>maven-compiler-plugin</artifactId>
172                 <configuration>
173                   <forceJavacCompilerUse>true</forceJavacCompilerUse>
174                 </configuration>
175               </plugin>
176         </plugins>
177     </build>
178 </project>