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