Use version 2.2.1 of parent pom
[ccsdk/features.git] / sdnr / northbound / addCMHandle / feature / 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>feature-repo-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-feature</artifactId>
34     <version>1.0.0-SNAPSHOT</version>
35     <packaging>feature</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.onap.ccsdk.features.sdnr.northbound</groupId>
59             <artifactId>addCMHandle-provider</artifactId>
60             <version>${project.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.onap.ccsdk.sli.core</groupId>
64             <artifactId>sli-common</artifactId>
65             <version>${ccsdk.sli.version}</version>
66             <scope>compile</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.onap.ccsdk.sli.core</groupId>
70             <artifactId>sli-provider</artifactId>
71             <version>${ccsdk.sli.version}</version>
72             <scope>compile</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.onap.ccsdk.sli.core</groupId>
76             <artifactId>utils-provider</artifactId>
77             <version>${ccsdk.sli.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>org.apache.velocity</groupId>
81             <artifactId>velocity-engine-core</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>commons-codec</groupId>
85             <artifactId>commons-codec</artifactId>
86         </dependency>
87     </dependencies>
88     <build>
89         <pluginManagement>
90             <plugins>
91                 <plugin>
92                     <groupId>org.eclipse.m2e</groupId>
93                     <artifactId>lifecycle-mapping</artifactId>
94                     <version>1.0.0</version>
95                     <configuration>
96                         <lifecycleMappingMetadata>
97                             <pluginExecutions>
98                                 <pluginExecution>
99                                     <pluginExecutionFilter>
100                                         <groupId>org.codehaus.mojo</groupId>
101                                         <artifactId>properties-maven-plugin</artifactId>
102                                         <versionRange>[1.0.0,)</versionRange>
103                                         <goals>
104                                             <goal>set-system-properties</goal>
105                                         </goals>
106                                     </pluginExecutionFilter>
107                                     <action>
108                                         <execute/>
109                                     </action>
110                                 </pluginExecution>
111                                 <pluginExecution>
112                                     <pluginExecutionFilter>
113                                         <groupId>org.apache.karaf.tooling</groupId>
114                                         <artifactId>karaf-maven-plugin</artifactId>
115                                         <versionRange>[4.0.0,)</versionRange>
116                                         <goals>
117                                             <goal>features-generate-descriptor</goal>
118                                         </goals>
119                                     </pluginExecutionFilter>
120                                     <action>
121                                         <execute/>
122                                     </action>
123                                 </pluginExecution>
124                             </pluginExecutions>
125                         </lifecycleMappingMetadata>
126                     </configuration>
127                 </plugin>
128             </plugins>
129         </pluginManagement>
130     </build>
131 </project>