Use version 2.2.1 of parent pom
[ccsdk/features.git] / sdnr / northbound / addCMHandle / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2021 Wipro Limited.
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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.2.1</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33     <artifactId>addCMHandle-provider</artifactId>
34     <version>1.0.0-SNAPSHOT</version>
35     <packaging>bundle</packaging>
36
37     <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
38
39     <dependencyManagement>
40         <dependencies>
41             <dependency>
42                 <groupId>org.opendaylight.controller</groupId>
43                 <artifactId>mdsal-artifacts</artifactId>
44                 <version>1.6.1</version>
45                 <type>pom</type>
46                 <scope>import</scope>
47             </dependency>
48         </dependencies>
49     </dependencyManagement>
50
51     <dependencies>
52         <dependency>
53             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
54             <artifactId>addCMHandle-model</artifactId>
55             <version>${project.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-binding-config</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-binding-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>sal-common-util</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>sal-core-api</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.yangtools</groupId>
75             <artifactId>yang-data-impl</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <!-- <version>${junit.version}</version> -->
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.mockito</groupId>
85             <artifactId>mockito-core</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>com.sun.jersey</groupId>
90             <artifactId>jersey-client</artifactId>
91             <version>1.19.4</version>
92         </dependency>
93         <dependency>
94             <groupId>com.sun.jersey</groupId>
95             <artifactId>jersey-core</artifactId>
96             <version>1.19.4</version>
97         </dependency>
98     </dependencies>
99
100     <build>
101         <pluginManagement>
102             <plugins>
103                 <plugin>
104                     <groupId>org.eclipse.m2e</groupId>
105                     <artifactId>lifecycle-mapping</artifactId>
106                     <version>1.0.0</version>
107                     <configuration>
108                         <lifecycleMappingMetadata>
109                             <pluginExecutions>
110                                 <pluginExecution>
111                                     <pluginExecutionFilter>
112                                         <groupId>org.codehaus.mojo</groupId>
113                                         <artifactId>properties-maven-plugin</artifactId>
114                                         <versionRange>[1.0.0,)</versionRange>
115                                         <goals>
116                                             <goal>set-system-properties</goal>
117                                         </goals>
118                                     </pluginExecutionFilter>
119                                     <action>
120                                         <execute/>
121                                     </action>
122                                 </pluginExecution>
123                             </pluginExecutions>
124                         </lifecycleMappingMetadata>
125                     </configuration>
126                 </plugin>
127             </plugins>
128         </pluginManagement>
129     </build>
130
131 </project>