Merge "Set SureFire plugin version to make tests work"
[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
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>
29         <version>2.0.1-SNAPSHOT</version>
30         <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>
39     <properties>
40       <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
41       <!-- Override the snapshot version from parent pom -->
42       <ccsdk.features.version>1.0.0</ccsdk.features.version>
43       <ccsdk.sli.core.version>1.0.0</ccsdk.sli.core.version>
44       <ccsdk.sli.adaptors.version>1.0.0</ccsdk.sli.adaptors.version>
45       <ccsdk.sli.northbound.version>1.0.0</ccsdk.sli.northbound.version>
46       <ccsdk.sli.plugins.version>1.0.0</ccsdk.sli.plugins.version>
47     </properties>
48
49     <dependencyManagement>
50         <dependencies>
51             <dependency>
52                 <groupId>org.opendaylight.controller</groupId>
53                 <artifactId>mdsal-artifacts</artifactId>
54                 <version>1.6.1</version>
55                 <type>pom</type>
56                 <scope>import</scope>
57             </dependency>
58
59             <dependency>
60                 <groupId>org.onap.ccsdk.sli.core</groupId>
61                 <artifactId>sli-core-artifacts</artifactId>
62                 <version>${ccsdk.sli.core.version}</version>
63                 <type>pom</type>
64                 <scope>import</scope>
65             </dependency>
66
67         </dependencies>
68     </dependencyManagement>
69     <dependencies>
70         <dependency>
71             <groupId>org.onap.ccsdk.oran</groupId>
72             <artifactId>a1-adapter-model</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-binding-api</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-common-util</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-core-api</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>yang-data-impl</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.mockito</groupId>
98             <artifactId>mockito-core</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.onap.ccsdk.sli.core</groupId>
103             <artifactId>sli-common</artifactId>
104             <scope>provided</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.onap.ccsdk.sli.core</groupId>
108             <artifactId>sli-provider</artifactId>
109             <scope>provided</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.onap.ccsdk.sli.core</groupId>
113             <artifactId>utils-provider</artifactId>
114             <!-- <version>${sdnctl.sli.version}</version> -->
115         </dependency>
116
117     </dependencies>
118
119     <build>
120         <pluginManagement>
121             <plugins>
122                 <plugin>
123                     <groupId>org.eclipse.m2e</groupId>
124                     <artifactId>lifecycle-mapping</artifactId>
125                     <version>1.0.0</version>
126                     <configuration>
127                         <lifecycleMappingMetadata>
128                             <pluginExecutions>
129                                 <pluginExecution>
130                                     <pluginExecutionFilter>
131                                         <groupId>org.codehaus.mojo</groupId>
132                                         <artifactId>properties-maven-plugin</artifactId>
133                                         <versionRange>[1.0.0,)</versionRange>
134                                         <goals>
135                                             <goal>set-system-properties</goal>
136                                         </goals>
137                                     </pluginExecutionFilter>
138                                     <action>
139                                         <execute/>
140                                     </action>
141                                 </pluginExecution>
142                             </pluginExecutions>
143                         </lifecycleMappingMetadata>
144                     </configuration>
145                 </plugin>
146                 <plugin>
147                   <groupId>org.apache.maven.plugins</groupId>
148                   <artifactId>maven-javadoc-plugin</artifactId>
149                 <configuration>
150                   <source>8</source>
151                </configuration>
152             </plugin>
153             </plugins>
154         </pluginManagement>
155     </build>
156 </project>