blob: ec6f25239115c62bed76ce20aaa4652d50efb7c1 [file] [log] [blame]
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Brinda Santhbddb0762018-08-23 23:34:05 -04005 ~ Modifications Copyright © 2018 IBM.
6 ~
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +00007 ~ Licensed under the Apache License, Version 2.0 (the "License");
8 ~ you may not use this file except in compliance with the License.
9 ~ You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing, software
14 ~ distributed under the License is distributed on an "AS IS" BASIS,
15 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ~ See the License for the specific language governing permissions and
17 ~ limitations under the License.
18 -->
Gary Wucdadbb32018-08-24 15:16:48 -070019<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">
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +000020 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +000021 <parent>
22 <groupId>org.onap.ccsdk.apps</groupId>
23 <artifactId>controllerblueprints</artifactId>
Timoney, Dan (dt5972)85b0edf2018-10-25 10:34:51 -040024 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +000025 </parent>
26 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
27 <artifactId>parent</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +000028 <name>Controller Blueprints Parent</name>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +000029 <packaging>pom</packaging>
30 <properties>
Muthuramalingam, Brinda Santh(bs2796)c872d952018-12-01 19:54:07 -050031 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
32 <spring.version>5.1.3.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)d584eae2018-11-15 08:36:28 -050033 <kotlin.version>1.3.10</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)090d00c2018-11-24 14:25:26 -050034 <kotlin.maven.version>1.3.10</kotlin.maven.version>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -050035 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)a88d0ba2018-12-07 16:37:03 -050036 <grpc.version>1.16.1</grpc.version>
37 <protobuff.java.utils.version>3.6.1</protobuff.java.utils.version>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +000038 <eelf.version>1.0.0</eelf.version>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -050039 <guava.version>26.0-jre</guava.version>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +000040 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
41 <h2database.version>1.4.197</h2database.version>
Timoney, Dan (dt5972)85b0edf2018-10-25 10:34:51 -040042 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -050043 <powermock.version>1.7.4</powermock.version>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +000044 </properties>
45 <dependencyManagement>
46 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +000047 <!-- Spring boot -->
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +000048 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-dependencies</artifactId>
51 <version>${spring.boot.version}</version>
52 <type>pom</type>
53 <scope>import</scope>
54 </dependency>
55
56 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +000057 <groupId>com.att.eelf</groupId>
58 <artifactId>eelf-core</artifactId>
59 <version>${eelf.version}</version>
60 </dependency>
Muthuramalingam, Brinda Santh(bs2796)713a0952018-09-03 00:50:25 +000061 <dependency>
62 <groupId>org.onap.logging-analytics</groupId>
63 <artifactId>logging-slf4j</artifactId>
64 <version>${onap.logger.slf4j}</version>
65 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +000066
67 <!--Swagger Dependencies -->
68 <dependency>
69 <groupId>io.springfox</groupId>
70 <artifactId>springfox-swagger2</artifactId>
71 <version>${springfox.swagger2.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>io.springfox</groupId>
75 <artifactId>springfox-swagger-ui</artifactId>
76 <version>${springfox.swagger2.version}</version>
77 </dependency>
78
79 <dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +000080 <groupId>org.apache.commons</groupId>
81 <artifactId>commons-lang3</artifactId>
82 <version>3.2.1</version>
83 </dependency>
84 <dependency>
85 <groupId>commons-collections</groupId>
86 <artifactId>commons-collections</artifactId>
87 <version>3.2.2</version>
88 </dependency>
89 <dependency>
90 <groupId>commons-io</groupId>
91 <artifactId>commons-io</artifactId>
92 <version>2.6</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.velocity</groupId>
96 <artifactId>velocity</artifactId>
97 <version>1.7</version>
98 </dependency>
Sandeep J1b4788a2018-09-21 15:44:52 +053099 <dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000100 <groupId>com.google.guava</groupId>
101 <artifactId>guava</artifactId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500102 <version>${guava.version}</version>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000103 </dependency>
104
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000105 <!-- Kotlin Dependencies -->
106 <dependency>
107 <groupId>org.jetbrains.kotlin</groupId>
108 <artifactId>kotlin-stdlib</artifactId>
109 <version>${kotlin.version}</version>
110 </dependency>
111 <dependency>
112 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500113 <artifactId>kotlinx-couroutines-core</artifactId>
114 <version>${kotlin.couroutines.version}</version>
115 </dependency>
116 <dependency>
Muthuramalingam, Brinda Santh(bs2796)8e8bfd22018-12-20 11:16:31 -0500117 <groupId>org.jetbrains.kotlinx</groupId>
118 <artifactId>kotlinx-coroutines-reactor</artifactId>
119 <version>${kotlin.couroutines.version}</version>
120 </dependency>
121 <dependency>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500122 <groupId>org.jetbrains.kotlin</groupId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000123 <artifactId>kotlin-reflect</artifactId>
124 <version>${kotlin.version}</version>
125 </dependency>
126 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000127 <groupId>org.jetbrains.kotlin</groupId>
128 <artifactId>kotlin-stdlib-jdk8</artifactId>
129 <version>${kotlin.version}</version>
130 </dependency>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500131 <dependency>
132 <groupId>org.jetbrains.kotlin</groupId>
133 <artifactId>kotlin-stdlib-jdk7</artifactId>
134 <version>${kotlin.version}</version>
135 </dependency>
136
Muthuramalingam, Brinda Santh(bs2796)a88d0ba2018-12-07 16:37:03 -0500137 <!-- GRPC Dependencies -->
138 <dependency>
139 <groupId>io.grpc</groupId>
140 <artifactId>grpc-core</artifactId>
141 <version>${grpc.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>io.grpc</groupId>
145 <artifactId>grpc-netty</artifactId>
146 <version>${grpc.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>io.grpc</groupId>
150 <artifactId>grpc-protobuf</artifactId>
151 <version>${grpc.version}</version>
152 </dependency>
153 <dependency>
154 <groupId>io.grpc</groupId>
155 <artifactId>grpc-stub</artifactId>
156 <version>${grpc.version}</version>
157 </dependency>
158 <dependency>
159 <groupId>com.google.protobuf</groupId>
160 <artifactId>protobuf-java-util</artifactId>
161 <version>${protobuff.java.utils.version}</version>
162 </dependency>
163
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000164 <!-- Database -->
165 <dependency>
166 <groupId>com.h2database</groupId>
167 <artifactId>h2</artifactId>
168 <version>${h2database.version}</version>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000169 </dependency>
Brinda Santhbddb0762018-08-23 23:34:05 -0400170
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000171
172 <!-- Application Components -->
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000173 <dependency>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000174 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
175 <artifactId>core</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000176 <version>${project.version}</version>
177 </dependency>
178 <dependency>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000179 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
180 <artifactId>service</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000181 <version>${project.version}</version>
182 </dependency>
183 <dependency>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000184 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
185 <artifactId>application</artifactId>
186 <version>${project.version}</version>
187 </dependency>
188 <dependency>
189 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
190 <artifactId>resource-dict</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000191 <version>${project.version}</version>
192 </dependency>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -0500193 <dependency>
194 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
195 <artifactId>db-resources</artifactId>
196 <version>${project.version}</version>
197 </dependency>
198 <dependency>
199 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
200 <artifactId>blueprint-validation</artifactId>
201 <version>${project.version}</version>
202 </dependency>
Brinda Santhbddb0762018-08-23 23:34:05 -0400203
204 <!-- Testing Dependencies -->
205 <dependency>
206 <groupId>org.powermock</groupId>
207 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500208 <version>${powermock.version}</version>
Brinda Santhbddb0762018-08-23 23:34:05 -0400209 <scope>test</scope>
210 </dependency>
211 <dependency>
212 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500213 <artifactId>kotlin-test-junit</artifactId>
Brinda Santhbddb0762018-08-23 23:34:05 -0400214 <version>${kotlin.version}</version>
215 <scope>test</scope>
216 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c872d952018-12-01 19:54:07 -0500217 <dependency>
218 <groupId>io.grpc</groupId>
219 <artifactId>grpc-testing</artifactId>
220 <version>${grpc.version}</version>
221 <scope>test</scope>
222 </dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000223 </dependencies>
224 </dependencyManagement>
225
226 <dependencies>
227 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000228 <groupId>com.att.eelf</groupId>
229 <artifactId>eelf-core</artifactId>
230 </dependency>
231 <dependency>
Muthuramalingam, Brinda Santh(bs2796)713a0952018-09-03 00:50:25 +0000232 <groupId>org.onap.logging-analytics</groupId>
233 <artifactId>logging-slf4j</artifactId>
234 </dependency>
235 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000236 <groupId>org.apache.commons</groupId>
237 <artifactId>commons-lang3</artifactId>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000238 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000239 <dependency>
240 <groupId>commons-collections</groupId>
241 <artifactId>commons-collections</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000242 </dependency>
243 <dependency>
244 <groupId>commons-io</groupId>
245 <artifactId>commons-io</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000246 </dependency>
247 <dependency>
248 <groupId>com.jayway.jsonpath</groupId>
249 <artifactId>json-path</artifactId>
250 </dependency>
251 <dependency>
252 <groupId>io.springfox</groupId>
253 <artifactId>springfox-swagger2</artifactId>
254 </dependency>
255 <dependency>
256 <groupId>io.springfox</groupId>
257 <artifactId>springfox-swagger-ui</artifactId>
258 </dependency>
259 <dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000260 <groupId>org.jetbrains.kotlin</groupId>
261 <artifactId>kotlin-stdlib</artifactId>
262 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000263 <dependency>
264 <groupId>org.jetbrains.kotlin</groupId>
265 <artifactId>kotlin-stdlib-jdk8</artifactId>
266 </dependency>
267 <dependency>
268 <groupId>com.fasterxml.jackson.module</groupId>
269 <artifactId>jackson-module-kotlin</artifactId>
270 </dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000271 </dependencies>
272
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000273 <build>
274 <plugins>
275 <plugin>
276 <groupId>org.apache.maven.plugins</groupId>
277 <artifactId>maven-source-plugin</artifactId>
278 <version>3.0.1</version>
279 <executions>
280 <execution>
281 <id>attach-sources</id>
282 <goals>
283 <goal>jar</goal>
284 </goals>
285 </execution>
286 </executions>
287 </plugin>
288
289 <plugin>
290 <artifactId>kotlin-maven-plugin</artifactId>
291 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)d584eae2018-11-15 08:36:28 -0500292 <version>${kotlin.maven.version}</version>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000293 <executions>
294 <execution>
295 <id>compile</id>
296 <goals>
297 <goal>compile</goal>
298 </goals>
299 <configuration>
300 <sourceDirs>
301 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
302 <sourceDir>${project.basedir}/src/main/java</sourceDir>
303 </sourceDirs>
304 </configuration>
305 </execution>
306 <execution>
307 <id>test-compile</id>
308 <goals>
309 <goal>test-compile</goal>
310 </goals>
311 <configuration>
312 <sourceDirs>
313 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
314 <sourceDir>${project.basedir}/src/test/java</sourceDir>
315 </sourceDirs>
316 </configuration>
317 </execution>
318 </executions>
319 </plugin>
320 <plugin>
321 <groupId>org.apache.maven.plugins</groupId>
322 <artifactId>maven-compiler-plugin</artifactId>
323 <version>3.5.1</version>
324 <configuration>
325 <source>${maven.compiler.source}</source>
326 <target>${maven.compiler.target}</target>
327 </configuration>
328 <executions>
329 <!-- Replacing default-compile as it is treated specially by maven -->
330 <execution>
331 <id>default-compile</id>
332 <phase>none</phase>
333 </execution>
334 <!-- Replacing default-testCompile as it is treated specially by maven -->
335 <execution>
336 <id>default-testCompile</id>
337 <phase>none</phase>
338 </execution>
339 <execution>
340 <id>java-compile</id>
341 <phase>compile</phase>
342 <goals>
343 <goal>compile</goal>
344 </goals>
345 </execution>
346 <execution>
347 <id>java-test-compile</id>
348 <phase>test-compile</phase>
349 <goals>
350 <goal>testCompile</goal>
351 </goals>
352 </execution>
353 </executions>
354 </plugin>
355 </plugins>
356 </build>
357</project>