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