blob: f2e8805ae1622f981f9c781a7fcd754923a7c122 [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 -->
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 Timoney1bd16a42020-11-25 16:13:30 -050029 <version>2.1.0</version>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34 <artifactId>ranSlice-provider</artifactId>
Dan Timoney1bd16a42020-11-25 16:13:30 -050035 <version>1.1.1-SNAPSHOT</version>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -050036 <packaging>bundle</packaging>
37
38 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
40 <dependencyManagement>
41 <dependencies>
42 <dependency>
43 <groupId>org.opendaylight.controller</groupId>
44 <artifactId>mdsal-artifacts</artifactId>
45 <version>1.6.1</version>
46 <type>pom</type>
47 <scope>import</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.onap.ccsdk.sli.core</groupId>
51 <artifactId>sli-core-artifacts</artifactId>
52 <version>${ccsdk.sli.core.version}</version>
53 <type>pom</type>
54 <scope>import</scope>
55 </dependency>
56 </dependencies>
57 </dependencyManagement>
58 <dependencies>
59 <dependency>
60 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
61 <artifactId>ranSlice-model</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 <!--
65 <dependency>
66 <groupId>org.opendaylight.controller</groupId>
67 <artifactId>sal-binding-config</artifactId>
68 </dependency>
69 -->
70 <dependency>
71 <groupId>org.opendaylight.controller</groupId>
72 <artifactId>sal-binding-api</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.opendaylight.controller</groupId>
76 <artifactId>sal-common-util</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.opendaylight.controller</groupId>
80 <artifactId>sal-core-api</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.opendaylight.controller</groupId>
84 <artifactId>sal-binding-broker-impl</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.opendaylight.yangtools</groupId>
88 <artifactId>yang-data-impl</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.testng</groupId>
97 <artifactId>testng</artifactId>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.mockito</groupId>
102 <artifactId>mockito-core</artifactId>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.derby</groupId>
107 <artifactId>derby</artifactId>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.onap.ccsdk.sli.core</groupId>
112 <artifactId>sli-common</artifactId>
113 <scope>provided</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.onap.ccsdk.sli.core</groupId>
117 <artifactId>sli-provider</artifactId>
118 <scope>provided</scope>
119 </dependency>
120 <dependency>
121 <groupId>org.onap.ccsdk.sli.core</groupId>
122 <artifactId>utils-provider</artifactId>
123 <!-- <version>${sdnctl.sli.version}</version> -->
124 </dependency>
125 <dependency>
126 <groupId>org.osgi</groupId>
127 <artifactId>org.osgi.core</artifactId>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.onap.ccsdk.sli.core</groupId>
132 <artifactId>sli-provider-base</artifactId>
133 <version>${ccsdk.sli.core.version}</version>
Dan Timoneyb947f8f2020-10-08 13:51:56 -0400134 <scope>provided</scope>
Sandeep Shah94bf6cb2020-08-15 20:21:18 -0500135 </dependency>
136 </dependencies>
137
138 <build>
139 <pluginManagement>
140 <plugins>
141 <plugin>
142 <groupId>org.eclipse.m2e</groupId>
143 <artifactId>lifecycle-mapping</artifactId>
144 <version>1.0.0</version>
145 <configuration>
146 <lifecycleMappingMetadata>
147 <pluginExecutions>
148 <pluginExecution>
149 <pluginExecutionFilter>
150 <groupId>org.codehaus.mojo</groupId>
151 <artifactId>properties-maven-plugin</artifactId>
152 <versionRange>[1.0.0,)</versionRange>
153 <goals>
154 <goal>set-system-properties</goal>
155 </goals>
156 </pluginExecutionFilter>
157 <action>
158 <execute/>
159 </action>
160 </pluginExecution>
161 </pluginExecutions>
162 </lifecycleMappingMetadata>
163 </configuration>
164 </plugin>
165 </plugins>
166 </pluginManagement>
167 </build>
168</project>