Fixes from local testing
[ccsdk/features.git] / sdnr / northbound / ranSlice / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2020 AT&T Intellectual Property. 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"
23          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.4.1</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34     <artifactId>ranSlice-provider</artifactId>
35     <version>1.4.0-SNAPSHOT</version>
36     <packaging>bundle</packaging>
37
38     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
40     <properties>
41         <ccsdk.sli.version>1.5.0-SNAPSHOT</ccsdk.sli.version>
42     </properties>
43
44     <dependencies>
45         <dependency>
46             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
47             <artifactId>ranSlice-model</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-dom-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.yangtools</groupId>
60             <artifactId>yang-data-impl</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.testng</groupId>
69             <artifactId>testng</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.mockito</groupId>
74             <artifactId>mockito-core</artifactId>
75             <version>3.12.4</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.powermock</groupId>
80             <artifactId>powermock-api-mockito2</artifactId>
81             <version>2.0.9</version>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-module-junit4</artifactId>
87             <version>2.0.9</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.apache.derby</groupId>
92             <artifactId>derby</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.onap.ccsdk.sli.core</groupId>
97             <artifactId>sli-common</artifactId>
98             <version>${ccsdk.sli.version}</version>
99             <scope>provided</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.onap.ccsdk.sli.core</groupId>
103             <artifactId>sli-provider</artifactId>
104             <version>${ccsdk.sli.version}</version>
105             <scope>provided</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.onap.ccsdk.sli.core</groupId>
109             <artifactId>utils-provider</artifactId>
110             <version>${ccsdk.sli.version}</version>
111             <scope>provided</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.osgi</groupId>
115             <artifactId>org.osgi.core</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.onap.ccsdk.sli.core</groupId>
120             <artifactId>sli-provider-base</artifactId>
121             <version>${ccsdk.sli.version}</version>
122             <scope>provided</scope>
123         </dependency>
124     </dependencies>
125
126     <build>
127         <pluginManagement>
128             <plugins>
129                 <plugin>
130                     <groupId>org.eclipse.m2e</groupId>
131                     <artifactId>lifecycle-mapping</artifactId>
132                     <version>1.0.0</version>
133                     <configuration>
134                         <lifecycleMappingMetadata>
135                             <pluginExecutions>
136                                 <pluginExecution>
137                                     <pluginExecutionFilter>
138                                         <groupId>org.codehaus.mojo</groupId>
139                                         <artifactId>properties-maven-plugin</artifactId>
140                                         <versionRange>[1.0.0,)</versionRange>
141                                         <goals>
142                                             <goal>set-system-properties</goal>
143                                         </goals>
144                                     </pluginExecutionFilter>
145                                     <action>
146                                         <execute/>
147                                     </action>
148                                 </pluginExecution>
149                             </pluginExecutions>
150                         </lifecycleMappingMetadata>
151                     </configuration>
152                 </plugin>
153             </plugins>
154         </pluginManagement>
155     </build>
156 </project>