blob: 257fe5b7ea8fae47269ca6e51ba984dc2a4849ea [file] [log] [blame]
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)17552ad2019-07-17 11:05:55 -04002<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">
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -05003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)bc483372019-09-11 10:58:56 -04008 <version>1.5.0-SNAPSHOT</version>
Timoney, Dan (dt5972)17552ad2019-07-17 11:05:55 -04009 <relativePath/>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -050010 </parent>
11
12 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
13 <artifactId>oofpcipoc-consumer</artifactId>
Timoney, Dan (dt5972)bc483372019-09-11 10:58:56 -040014 <version>0.7.0-SNAPSHOT</version>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -050015 <packaging>bundle</packaging>
16
17 <dependencyManagement>
18 <dependencies>
19 <dependency>
20 <groupId>org.opendaylight.controller</groupId>
21 <artifactId>mdsal-artifacts</artifactId>
22 <version>1.6.1</version>
23 <type>pom</type>
24 <scope>import</scope>
25 </dependency>
26
27 <dependency>
28 <groupId>org.onap.ccsdk.sli.core</groupId>
29 <artifactId>sli-core-artifacts</artifactId>
30 <version>${ccsdk.sli.core.version}</version>
31 <type>pom</type>
32 <scope>import</scope>
33 </dependency>
34
35 </dependencies>
36 </dependencyManagement>
37
38
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
43 <artifactId>oofpcipoc-model</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
48 <artifactId>oofpcipoc-provider</artifactId>
49 <version>${project.version}</version>
50 </dependency>
Sandeep Shah88913b42019-07-12 19:19:28 -050051 <!-- <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>sal-binding-config</artifactId>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -050052 </dependency> -->
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>com.fasterxml.jackson.core</groupId>
71 <artifactId>jackson-databind</artifactId>
72 <version>2.9.8</version>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.core</groupId>
76 <artifactId>jackson-core</artifactId>
77 <version>2.9.8</version>
78 </dependency>
79
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-annotations</artifactId>
83 <version>2.9.8</version>
84 </dependency>
85 <dependency>
86 <groupId>junit</groupId>
87 <artifactId>junit</artifactId>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.mockito</groupId>
92 <artifactId>mockito-core</artifactId>
93 <scope>test</scope>
94 </dependency>
95
96 <dependency>
97 <groupId>org.onap.ccsdk.sli.core</groupId>
98 <artifactId>sli-common</artifactId>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.onap.ccsdk.sli.core</groupId>
103 <artifactId>sli-provider</artifactId>
104 <scope>compile</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.onap.ccsdk.sli.core</groupId>
108 <artifactId>utils-provider</artifactId>
109 <!-- <version>${sdnctl.sli.version}</version> -->
110 </dependency>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -0500111 <dependency>
112 <groupId>org.apache.velocity</groupId>
113 <artifactId>velocity-engine-core</artifactId>
114 <version>2.0</version>
115 </dependency>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -0500116 <dependency>
117 <groupId>org.json</groupId>
118 <artifactId>json</artifactId>
119 <version>20131018</version>
120 </dependency>
121 <dependency>
122 <groupId>commons-codec</groupId>
123 <artifactId>commons-codec</artifactId>
124 <version>1.9</version>
125 </dependency>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -0500126 </dependencies>
127
128 <build>
129 <pluginManagement>
130 <plugins>
131 <plugin>
132 <groupId>org.eclipse.m2e</groupId>
133 <artifactId>lifecycle-mapping</artifactId>
134 <version>1.0.0</version>
135 <configuration>
136 <lifecycleMappingMetadata>
137 <pluginExecutions>
138 <pluginExecution>
139 <pluginExecutionFilter>
140 <groupId>org.codehaus.mojo</groupId>
141 <artifactId>properties-maven-plugin</artifactId>
142 <versionRange>[1.0.0,)</versionRange>
143 <goals>
144 <goal>set-system-properties</goal>
145 </goals>
146 </pluginExecutionFilter>
147 <action>
Timoney, Dan (dt5972)17552ad2019-07-17 11:05:55 -0400148 <execute/>
Sandeep Shah7bbcdbb2019-07-02 15:28:49 -0500149 </action>
150 </pluginExecution>
151 </pluginExecutions>
152 </lifecycleMappingMetadata>
153 </configuration>
154 </plugin>
155 </plugins>
156 </pluginManagement>
157 </build>
158
159</project>