blob: 466d7dc6ff2be07d495326e6066d20978598e8b2 [file] [log] [blame]
Sandeep Shah94bf6cb2020-08-15 20:21:18 -05001<?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 -->
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050022<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>
Dan Timoney24383fb2021-05-04 13:52:45 -040028 <version>2.1.4</version>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050029 <relativePath/>
30 </parent>
31
32 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33 <artifactId>ranSlice-provider</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040034 <version>1.1.5-SNAPSHOT</version>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050035 <packaging>bundle</packaging>
36
37 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
38
39 <dependencyManagement>
40 <dependencies>
Ravi Pendurty2f9e7812021-02-03 14:09:25 +010041 <dependency>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050042 <groupId>org.onap.ccsdk.sli.core</groupId>
43 <artifactId>sli-core-artifacts</artifactId>
44 <version>${ccsdk.sli.core.version}</version>
45 <type>pom</type>
46 <scope>import</scope>
47 </dependency>
48 </dependencies>
49 </dependencyManagement>
50 <dependencies>
51 <dependency>
52 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
53 <artifactId>ranSlice-model</artifactId>
54 <version>${project.version}</version>
55 </dependency>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050056 <dependency>
Ravi Pendurty2f9e7812021-02-03 14:09:25 +010057 <groupId>org.opendaylight.mdsal</groupId>
58 <artifactId>mdsal-binding-api</artifactId>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050059 </dependency>
60 <dependency>
Ravi Pendurty2f9e7812021-02-03 14:09:25 +010061 <groupId>org.opendaylight.mdsal</groupId>
62 <artifactId>mdsal-dom-api</artifactId>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050063 </dependency>
64 <dependency>
65 <groupId>org.opendaylight.yangtools</groupId>
66 <artifactId>yang-data-impl</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.testng</groupId>
75 <artifactId>testng</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.mockito</groupId>
80 <artifactId>mockito-core</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.derby</groupId>
85 <artifactId>derby</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.onap.ccsdk.sli.core</groupId>
90 <artifactId>sli-common</artifactId>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.onap.ccsdk.sli.core</groupId>
95 <artifactId>sli-provider</artifactId>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.onap.ccsdk.sli.core</groupId>
100 <artifactId>utils-provider</artifactId>
101 <!-- <version>${sdnctl.sli.version}</version> -->
102 </dependency>
103 <dependency>
Singal, Kapil (ks220y)30a59752020-12-18 13:21:28 -0500104 <groupId>org.osgi</groupId>
105 <artifactId>org.osgi.core</artifactId>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.onap.ccsdk.sli.core</groupId>
110 <artifactId>sli-provider-base</artifactId>
111 <version>${ccsdk.sli.core.version}</version>
112 <scope>provided</scope>
113 </dependency>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -0500114 </dependencies>
115
116 <build>
117 <pluginManagement>
118 <plugins>
119 <plugin>
120 <groupId>org.eclipse.m2e</groupId>
121 <artifactId>lifecycle-mapping</artifactId>
122 <version>1.0.0</version>
123 <configuration>
124 <lifecycleMappingMetadata>
125 <pluginExecutions>
126 <pluginExecution>
127 <pluginExecutionFilter>
128 <groupId>org.codehaus.mojo</groupId>
129 <artifactId>properties-maven-plugin</artifactId>
130 <versionRange>[1.0.0,)</versionRange>
131 <goals>
132 <goal>set-system-properties</goal>
133 </goals>
134 </pluginExecutionFilter>
135 <action>
136 <execute/>
137 </action>
138 </pluginExecution>
139 </pluginExecutions>
140 </lifecycleMappingMetadata>
141 </configuration>
142 </plugin>
143 </plugins>
144 </pluginManagement>
145 </build>
146</project>