Release version 1.1.0 of 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.0</version>
30         <relativePath/>
31     </parent>
32
33     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34     <artifactId>oofpcipoc-consumer</artifactId>
35     <version>1.1.1-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> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-binding-config</artifactId>
70             </dependency> -->
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-binding-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>sal-common-util</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller</groupId>
81             <artifactId>sal-core-api</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-data-impl</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.fasterxml.jackson.core</groupId>
89             <artifactId>jackson-databind</artifactId>
90             <version>2.9.8</version>
91         </dependency>
92         <dependency>
93             <groupId>com.fasterxml.jackson.core</groupId>
94             <artifactId>jackson-core</artifactId>
95             <version>2.9.8</version>
96         </dependency>
97         <dependency>
98             <groupId>com.fasterxml.jackson.core</groupId>
99             <artifactId>jackson-annotations</artifactId>
100             <version>2.9.8</version>
101         </dependency>
102         <dependency>
103             <groupId>junit</groupId>
104             <artifactId>junit</artifactId>
105             <scope>test</scope>
106         </dependency>
107         <dependency>
108             <groupId>org.mockito</groupId>
109             <artifactId>mockito-core</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.onap.ccsdk.sli.core</groupId>
114             <artifactId>sli-common</artifactId>
115             <scope>compile</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.onap.ccsdk.sli.core</groupId>
119             <artifactId>sli-provider</artifactId>
120             <scope>compile</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.onap.ccsdk.sli.core</groupId>
124             <artifactId>utils-provider</artifactId>
125             <!-- <version>${sdnctl.sli.version}</version> -->
126         </dependency>
127         <dependency>
128             <groupId>org.apache.velocity</groupId>
129             <artifactId>velocity-engine-core</artifactId>
130             <version>2.0</version>
131         </dependency>
132         <dependency>
133             <groupId>org.json</groupId>
134             <artifactId>json</artifactId>
135             <version>20131018</version>
136         </dependency>
137         <dependency>
138             <groupId>commons-codec</groupId>
139             <artifactId>commons-codec</artifactId>
140             <version>1.9</version>
141         </dependency>
142     </dependencies>
143
144     <build>
145         <pluginManagement>
146             <plugins>
147                 <plugin>
148                     <groupId>org.eclipse.m2e</groupId>
149                     <artifactId>lifecycle-mapping</artifactId>
150                     <version>1.0.0</version>
151                     <configuration>
152                         <lifecycleMappingMetadata>
153                             <pluginExecutions>
154                                 <pluginExecution>
155                                     <pluginExecutionFilter>
156                                         <groupId>org.codehaus.mojo</groupId>
157                                         <artifactId>properties-maven-plugin</artifactId>
158                                         <versionRange>[1.0.0,)</versionRange>
159                                         <goals>
160                                             <goal>set-system-properties</goal>
161                                         </goals>
162                                     </pluginExecutionFilter>
163                                     <action>
164                                         <execute/>
165                                     </action>
166                                 </pluginExecution>
167                             </pluginExecutions>
168                         </lifecycleMappingMetadata>
169                     </configuration>
170                 </plugin>
171             </plugins>
172         </pluginManagement>
173     </build>
174 </project>