Use released 2.4.0 parent poms
[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" 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>
28         <version>2.4.0</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33     <artifactId>ranSlice-provider</artifactId>
34     <version>1.4.0-SNAPSHOT</version>
35     <packaging>bundle</packaging>
36
37     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
38
39     <properties>
40         <ccsdk.sli.version>1.5.0-SNAPSHOT</ccsdk.sli.version>
41     </properties>
42
43     <dependencies>
44         <dependency>
45             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
46             <artifactId>ranSlice-model</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>mdsal-binding-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.mdsal</groupId>
55             <artifactId>mdsal-dom-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>yang-data-impl</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>junit</groupId>
63             <artifactId>junit</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.testng</groupId>
68             <artifactId>testng</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.mockito</groupId>
73             <artifactId>mockito-core</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.apache.derby</groupId>
78             <artifactId>derby</artifactId>
79             <scope>test</scope>
80         </dependency>
81         <dependency>
82             <groupId>org.onap.ccsdk.sli.core</groupId>
83             <artifactId>sli-common</artifactId>
84             <version>${ccsdk.sli.version}</version>
85             <scope>provided</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.onap.ccsdk.sli.core</groupId>
89             <artifactId>sli-provider</artifactId>
90             <version>${ccsdk.sli.version}</version>
91             <scope>provided</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.onap.ccsdk.sli.core</groupId>
95             <artifactId>utils-provider</artifactId>
96             <version>${ccsdk.sli.version}</version>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.osgi</groupId>
101             <artifactId>org.osgi.core</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.onap.ccsdk.sli.core</groupId>
106             <artifactId>sli-provider-base</artifactId>
107             <version>${ccsdk.sli.version}</version>
108             <scope>provided</scope>
109         </dependency>
110     </dependencies>
111
112     <build>
113         <pluginManagement>
114             <plugins>
115                 <plugin>
116                     <groupId>org.eclipse.m2e</groupId>
117                     <artifactId>lifecycle-mapping</artifactId>
118                     <version>1.0.0</version>
119                     <configuration>
120                         <lifecycleMappingMetadata>
121                             <pluginExecutions>
122                                 <pluginExecution>
123                                     <pluginExecutionFilter>
124                                         <groupId>org.codehaus.mojo</groupId>
125                                         <artifactId>properties-maven-plugin</artifactId>
126                                         <versionRange>[1.0.0,)</versionRange>
127                                         <goals>
128                                             <goal>set-system-properties</goal>
129                                         </goals>
130                                     </pluginExecutionFilter>
131                                     <action>
132                                         <execute/>
133                                     </action>
134                                 </pluginExecution>
135                             </pluginExecutions>
136                         </lifecycleMappingMetadata>
137                     </configuration>
138                 </plugin>
139             </plugins>
140         </pluginManagement>
141     </build>
142 </project>