e4aecbcfcdb9ca89dcd29ca7f373a5bb169a88fd
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / consumer / 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.3.3</version>
29         <relativePath/>
30     </parent>
31
32     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
33     <artifactId>oofpcipoc-consumer</artifactId>
34     <version>1.3.1-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     <dependencies>
51         <dependency>
52             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
53             <artifactId>oofpcipoc-model</artifactId>
54             <version>${project.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
58             <artifactId>oofpcipoc-provider</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-data-impl</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.fasterxml.jackson.core</groupId>
67             <artifactId>jackson-databind</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>com.fasterxml.jackson.core</groupId>
71             <artifactId>jackson-core</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>com.fasterxml.jackson.core</groupId>
75             <artifactId>jackson-annotations</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>junit</groupId>
79             <artifactId>junit</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.mockito</groupId>
84             <artifactId>mockito-core</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.onap.ccsdk.sli.core</groupId>
89             <artifactId>sli-common</artifactId>
90             <version>${ccsdk.sli.version}</version>
91             <scope>compile</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.onap.ccsdk.sli.core</groupId>
95             <artifactId>sli-provider</artifactId>
96             <version>${ccsdk.sli.version}</version>
97             <scope>compile</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.onap.ccsdk.sli.core</groupId>
101             <artifactId>utils-provider</artifactId>
102             <version>${ccsdk.sli.version}</version>
103         </dependency>
104         <dependency>
105             <groupId>org.apache.velocity</groupId>
106             <artifactId>velocity-engine-core</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.json</groupId>
110             <artifactId>json</artifactId>
111             <version>20131018</version>
112         </dependency>
113         <dependency>
114             <groupId>commons-codec</groupId>
115             <artifactId>commons-codec</artifactId>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <pluginManagement>
121             <plugins>
122                 <plugin>
123                     <groupId>org.eclipse.m2e</groupId>
124                     <artifactId>lifecycle-mapping</artifactId>
125                     <version>1.0.0</version>
126                     <configuration>
127                         <lifecycleMappingMetadata>
128                             <pluginExecutions>
129                                 <pluginExecution>
130                                     <pluginExecutionFilter>
131                                         <groupId>org.codehaus.mojo</groupId>
132                                         <artifactId>properties-maven-plugin</artifactId>
133                                         <versionRange>[1.0.0,)</versionRange>
134                                         <goals>
135                                             <goal>set-system-properties</goal>
136                                         </goals>
137                                     </pluginExecutionFilter>
138                                     <action>
139                                         <execute/>
140                                     </action>
141                                 </pluginExecution>
142                             </pluginExecutions>
143                         </lifecycleMappingMetadata>
144                     </configuration>
145                 </plugin>
146             </plugins>
147         </pluginManagement>
148     </build>
149 </project>