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