blob: fe3e2fe553ace9912b3d827481ce70091f5fd559 [file] [log] [blame]
Sandeep Shah3da6a9e2019-04-06 18:53:15 -05001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>binding-parent</artifactId>
9 <version>1.2.2-SNAPSHOT</version>
10 <relativePath />
11 </parent>
12
13 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
14 <artifactId>oofpcipoc-provider</artifactId>
15 <version>0.4.2-SNAPSHOT</version>
16 <packaging>bundle</packaging>
17
18 <dependencyManagement>
19 <dependencies>
20 <dependency>
21 <groupId>org.opendaylight.controller</groupId>
22 <artifactId>mdsal-artifacts</artifactId>
23 <version>1.6.1</version>
24 <type>pom</type>
25 <scope>import</scope>
26 </dependency>
27
28 <dependency>
29 <groupId>org.onap.ccsdk.sli.core</groupId>
30 <artifactId>sli-core-artifacts</artifactId>
31 <version>${ccsdk.sli.core.version}</version>
32 <type>pom</type>
33 <scope>import</scope>
34 </dependency>
35
36 </dependencies>
37 </dependencyManagement>
38
39
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
44 <artifactId>oofpcipoc-model</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <!--
48 <dependency>
49 <groupId>org.opendaylight.controller</groupId>
50 <artifactId>sal-binding-config</artifactId>
51 </dependency>
52 -->
53 <dependency>
54 <groupId>org.opendaylight.controller</groupId>
55 <artifactId>sal-binding-api</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.opendaylight.controller</groupId>
59 <artifactId>sal-common-util</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.opendaylight.controller</groupId>
63 <artifactId>sal-core-api</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.opendaylight.yangtools</groupId>
67 <artifactId>yang-data-impl</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.mockito</groupId>
76 <artifactId>mockito-core</artifactId>
77 <scope>test</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onap.ccsdk.sli.core</groupId>
82 <artifactId>sli-common</artifactId>
83 <scope>compile</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.onap.ccsdk.sli.core</groupId>
87 <artifactId>sli-provider</artifactId>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.onap.ccsdk.sli.core</groupId>
92 <artifactId>utils-provider</artifactId>
93 <!-- <version>${sdnctl.sli.version}</version> -->
94 </dependency>
95
96
97 </dependencies>
98
99 <build>
100 <pluginManagement>
101 <plugins>
102 <plugin>
103 <groupId>org.eclipse.m2e</groupId>
104 <artifactId>lifecycle-mapping</artifactId>
105 <version>1.0.0</version>
106 <configuration>
107 <lifecycleMappingMetadata>
108 <pluginExecutions>
109 <pluginExecution>
110 <pluginExecutionFilter>
111 <groupId>org.codehaus.mojo</groupId>
112 <artifactId>properties-maven-plugin</artifactId>
113 <versionRange>[1.0.0,)</versionRange>
114 <goals>
115 <goal>set-system-properties</goal>
116 </goals>
117 </pluginExecutionFilter>
118 <action>
119 <execute />
120 </action>
121 </pluginExecution>
122 </pluginExecutions>
123 </lifecycleMappingMetadata>
124 </configuration>
125 </plugin>
126 </plugins>
127 </pluginManagement>
128 </build>
129
130</project>