RAN Slice YANG Model and Associated Feature code
[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
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.features.sdnr.northbound</groupId>
34     <artifactId>ranSlice-provider</artifactId>
35     <version>1.0.1-SNAPSHOT</version>
36     <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>
134       </dependency>
135     </dependencies>
136
137     <build>
138         <pluginManagement>
139             <plugins>
140                 <plugin>
141                     <groupId>org.eclipse.m2e</groupId>
142                     <artifactId>lifecycle-mapping</artifactId>
143                     <version>1.0.0</version>
144                     <configuration>
145                         <lifecycleMappingMetadata>
146                             <pluginExecutions>
147                                 <pluginExecution>
148                                     <pluginExecutionFilter>
149                                         <groupId>org.codehaus.mojo</groupId>
150                                         <artifactId>properties-maven-plugin</artifactId>
151                                         <versionRange>[1.0.0,)</versionRange>
152                                         <goals>
153                                             <goal>set-system-properties</goal>
154                                         </goals>
155                                     </pluginExecutionFilter>
156                                     <action>
157                                         <execute/>
158                                     </action>
159                                 </pluginExecution>
160                             </pluginExecutions>
161                         </lifecycleMappingMetadata>
162                     </configuration>
163                 </plugin>
164             </plugins>
165         </pluginManagement>
166     </build>
167 </project>