Add new feature to register cmhandle in CPS
[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
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25
26     <parent>
27         <groupId>org.onap.ccsdk.parent</groupId>
28         <artifactId>feature-repo-parent</artifactId>
29         <version>2.2.0-SNAPSHOT</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34     <artifactId>addCMHandle-feature</artifactId>
35     <version>1.0.0-SNAPSHOT</version>
36     <packaging>feature</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         </dependencies>
50     </dependencyManagement>
51
52     <dependencies>
53         <dependency>
54             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
55             <artifactId>addCMHandle-model</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
60             <artifactId>addCMHandle-provider</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.onap.ccsdk.sli.core</groupId>
65             <artifactId>sli-common</artifactId>
66             <version>${ccsdk.sli.version}</version>
67             <scope>compile</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.onap.ccsdk.sli.core</groupId>
71             <artifactId>sli-provider</artifactId>
72             <version>${ccsdk.sli.version}</version>
73             <scope>compile</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.onap.ccsdk.sli.core</groupId>
77             <artifactId>utils-provider</artifactId>
78             <version>${ccsdk.sli.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>org.apache.velocity</groupId>
82             <artifactId>velocity-engine-core</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>commons-codec</groupId>
86             <artifactId>commons-codec</artifactId>
87         </dependency>
88     </dependencies>
89     <build>
90         <pluginManagement>
91             <plugins>
92                 <plugin>
93                     <groupId>org.eclipse.m2e</groupId>
94                     <artifactId>lifecycle-mapping</artifactId>
95                     <version>1.0.0</version>
96                     <configuration>
97                         <lifecycleMappingMetadata>
98                             <pluginExecutions>
99                                 <pluginExecution>
100                                     <pluginExecutionFilter>
101                                         <groupId>org.codehaus.mojo</groupId>
102                                         <artifactId>properties-maven-plugin</artifactId>
103                                         <versionRange>[1.0.0,)</versionRange>
104                                         <goals>
105                                             <goal>set-system-properties</goal>
106                                         </goals>
107                                     </pluginExecutionFilter>
108                                     <action>
109                                         <execute/>
110                                     </action>
111                                 </pluginExecution>
112                                 <pluginExecution>
113                                     <pluginExecutionFilter>
114                                         <groupId>org.apache.karaf.tooling</groupId>
115                                         <artifactId>karaf-maven-plugin</artifactId>
116                                         <versionRange>[4.0.0,)</versionRange>
117                                         <goals>
118                                             <goal>features-generate-descriptor</goal>
119                                         </goals>
120                                     </pluginExecutionFilter>
121                                     <action>
122                                         <execute/>
123                                     </action>
124                                 </pluginExecution>
125                             </pluginExecutions>
126                         </lifecycleMappingMetadata>
127                     </configuration>
128                 </plugin>
129             </plugins>
130         </pluginManagement>
131     </build>
132 </project>