blob: c9ad66f63859da0291249a31f489f63ffd673677 [file] [log] [blame]
Sandeep Shah3da6a9e2019-04-06 18:53:15 -05001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05002<!--
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
Timoney, Dan (dt5972)b511df02019-11-13 10:49:18 -050023<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">
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040024 <modelVersion>4.0.0</modelVersion>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050025
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040026 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>binding-parent</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050029 <version>1.5.2-SNAPSHOT</version>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040030 <relativePath/>
31 </parent>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050032
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040033 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34 <artifactId>oofpcipoc-provider</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050035 <version>0.7.1-SNAPSHOT</version>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040036 <packaging>bundle</packaging>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050037
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050038 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
Timoney, Dan (dt5972)03c25f02019-11-21 10:03:30 -050040 <properties>
41 <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
42 </properties>
43
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040044 <dependencyManagement>
45 <dependencies>
46 <dependency>
47 <groupId>org.opendaylight.controller</groupId>
48 <artifactId>mdsal-artifacts</artifactId>
49 <version>1.6.1</version>
50 <type>pom</type>
51 <scope>import</scope>
52 </dependency>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040053 <dependency>
54 <groupId>org.onap.ccsdk.sli.core</groupId>
55 <artifactId>sli-core-artifacts</artifactId>
56 <version>${ccsdk.sli.core.version}</version>
57 <type>pom</type>
58 <scope>import</scope>
59 </dependency>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040060 </dependencies>
61 </dependencyManagement>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -050062 <dependencies>
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -040063 <dependency>
64 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
65 <artifactId>oofpcipoc-model</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <!--
69 <dependency>
70 <groupId>org.opendaylight.controller</groupId>
71 <artifactId>sal-binding-config</artifactId>
72 </dependency>
73 -->
74 <dependency>
75 <groupId>org.opendaylight.controller</groupId>
76 <artifactId>sal-binding-api</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.opendaylight.controller</groupId>
80 <artifactId>sal-common-util</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.opendaylight.controller</groupId>
84 <artifactId>sal-core-api</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.opendaylight.yangtools</groupId>
88 <artifactId>yang-data-impl</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.mockito</groupId>
97 <artifactId>mockito-core</artifactId>
98 <scope>test</scope>
99 </dependency>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500100
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -0400101 <dependency>
102 <groupId>org.onap.ccsdk.sli.core</groupId>
103 <artifactId>sli-common</artifactId>
104 <scope>provided</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.onap.ccsdk.sli.core</groupId>
108 <artifactId>sli-provider</artifactId>
109 <scope>provided</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.onap.ccsdk.sli.core</groupId>
113 <artifactId>utils-provider</artifactId>
114 <!-- <version>${sdnctl.sli.version}</version> -->
115 </dependency>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500116 </dependencies>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500117
Timoney, Dan (dt5972)a6557cb2019-09-11 15:31:59 -0400118 <build>
119 <pluginManagement>
120 <plugins>
121 <plugin>
122 <groupId>org.eclipse.m2e</groupId>
123 <artifactId>lifecycle-mapping</artifactId>
124 <version>1.0.0</version>
125 <configuration>
126 <lifecycleMappingMetadata>
127 <pluginExecutions>
128 <pluginExecution>
129 <pluginExecutionFilter>
130 <groupId>org.codehaus.mojo</groupId>
131 <artifactId>properties-maven-plugin</artifactId>
132 <versionRange>[1.0.0,)</versionRange>
133 <goals>
134 <goal>set-system-properties</goal>
135 </goals>
136 </pluginExecutionFilter>
137 <action>
138 <execute/>
139 </action>
140 </pluginExecution>
141 </pluginExecutions>
142 </lifecycleMappingMetadata>
143 </configuration>
144 </plugin>
145 </plugins>
146 </pluginManagement>
147 </build>
Sandeep Shah3da6a9e2019-04-06 18:53:15 -0500148</project>