blob: 9042318dc7ffde87ec8f512b2ca726384a5b5db3 [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)13f58212019-01-04 10:43:33 -050024 <version>0.4.1-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 Santh72b279d2019-01-11 11:30:40 -050033 <kotlin.version>1.3.11</kotlin.version>
34 <kotlin.maven.version>1.3.11</kotlin.maven.version>
35 <kotlin.couroutines.version>1.1.0</kotlin.couroutines.version>
36 <grpc.version>1.17.1</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)a88d0ba2018-12-07 16:37:03 -050037 <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 Santh72b279d2019-01-11 11:30:40 -050039 <guava.version>27.0.1-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 Santh72b279d2019-01-11 11:30:40 -0500113 <artifactId>kotlin-scripting-jvm-host</artifactId>
114 <version>${kotlin.version}</version>
115 </dependency>
116 <dependency>
117 <groupId>org.jetbrains.kotlin</groupId>
118 <artifactId>kotlin-compiler-embeddable</artifactId>
119 <version>${kotlin.version}</version>
120 <scope>runtime</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.jetbrains.kotlin</groupId>
124 <artifactId>kotlin-script-util</artifactId>
125 <version>${kotlin.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>org.jetbrains.kotlin</groupId>
129 <artifactId>kotlin-script-runtime</artifactId>
130 <version>${kotlin.version}</version>
131 </dependency>
132 <dependency>
133 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500134 <artifactId>kotlinx-couroutines-core</artifactId>
135 <version>${kotlin.couroutines.version}</version>
136 </dependency>
137 <dependency>
Muthuramalingam, Brinda Santh(bs2796)8e8bfd22018-12-20 11:16:31 -0500138 <groupId>org.jetbrains.kotlinx</groupId>
139 <artifactId>kotlinx-coroutines-reactor</artifactId>
140 <version>${kotlin.couroutines.version}</version>
141 </dependency>
142 <dependency>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500143 <groupId>org.jetbrains.kotlin</groupId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000144 <artifactId>kotlin-reflect</artifactId>
145 <version>${kotlin.version}</version>
146 </dependency>
147 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000148 <groupId>org.jetbrains.kotlin</groupId>
149 <artifactId>kotlin-stdlib-jdk8</artifactId>
150 <version>${kotlin.version}</version>
151 </dependency>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500152 <dependency>
153 <groupId>org.jetbrains.kotlin</groupId>
154 <artifactId>kotlin-stdlib-jdk7</artifactId>
155 <version>${kotlin.version}</version>
156 </dependency>
157
Muthuramalingam, Brinda Santh(bs2796)a88d0ba2018-12-07 16:37:03 -0500158 <!-- GRPC Dependencies -->
159 <dependency>
160 <groupId>io.grpc</groupId>
161 <artifactId>grpc-core</artifactId>
162 <version>${grpc.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>io.grpc</groupId>
166 <artifactId>grpc-netty</artifactId>
167 <version>${grpc.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>io.grpc</groupId>
171 <artifactId>grpc-protobuf</artifactId>
172 <version>${grpc.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>io.grpc</groupId>
176 <artifactId>grpc-stub</artifactId>
177 <version>${grpc.version}</version>
178 </dependency>
179 <dependency>
180 <groupId>com.google.protobuf</groupId>
181 <artifactId>protobuf-java-util</artifactId>
182 <version>${protobuff.java.utils.version}</version>
183 </dependency>
184
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000185 <!-- Database -->
186 <dependency>
187 <groupId>com.h2database</groupId>
188 <artifactId>h2</artifactId>
189 <version>${h2database.version}</version>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000190 </dependency>
Brinda Santhbddb0762018-08-23 23:34:05 -0400191
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000192
193 <!-- Application Components -->
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000194 <dependency>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000195 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
196 <artifactId>core</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000197 <version>${project.version}</version>
198 </dependency>
199 <dependency>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000200 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
201 <artifactId>service</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000202 <version>${project.version}</version>
203 </dependency>
204 <dependency>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000205 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
206 <artifactId>application</artifactId>
207 <version>${project.version}</version>
208 </dependency>
209 <dependency>
210 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
211 <artifactId>resource-dict</artifactId>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000212 <version>${project.version}</version>
213 </dependency>
Alexis de Talhouët7f6c5272019-01-07 16:33:02 -0500214 <dependency>
215 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
216 <artifactId>db-resources</artifactId>
217 <version>${project.version}</version>
218 </dependency>
219 <dependency>
220 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
221 <artifactId>blueprint-validation</artifactId>
222 <version>${project.version}</version>
223 </dependency>
Brinda Santhbddb0762018-08-23 23:34:05 -0400224
225 <!-- Testing Dependencies -->
226 <dependency>
227 <groupId>org.powermock</groupId>
228 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500229 <version>${powermock.version}</version>
Brinda Santhbddb0762018-08-23 23:34:05 -0400230 <scope>test</scope>
231 </dependency>
232 <dependency>
233 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)6488fc32018-11-10 11:54:05 -0500234 <artifactId>kotlin-test-junit</artifactId>
Brinda Santhbddb0762018-08-23 23:34:05 -0400235 <version>${kotlin.version}</version>
236 <scope>test</scope>
237 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c872d952018-12-01 19:54:07 -0500238 <dependency>
239 <groupId>io.grpc</groupId>
240 <artifactId>grpc-testing</artifactId>
241 <version>${grpc.version}</version>
242 <scope>test</scope>
243 </dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000244 </dependencies>
245 </dependencyManagement>
246
247 <dependencies>
248 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000249 <groupId>com.att.eelf</groupId>
250 <artifactId>eelf-core</artifactId>
251 </dependency>
252 <dependency>
Muthuramalingam, Brinda Santh(bs2796)713a0952018-09-03 00:50:25 +0000253 <groupId>org.onap.logging-analytics</groupId>
254 <artifactId>logging-slf4j</artifactId>
255 </dependency>
256 <dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000257 <groupId>org.apache.commons</groupId>
258 <artifactId>commons-lang3</artifactId>
Muthuramalingam, Brinda Santh(bs2796)380b7af2018-08-23 15:54:30 +0000259 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000260 <dependency>
261 <groupId>commons-collections</groupId>
262 <artifactId>commons-collections</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000263 </dependency>
264 <dependency>
265 <groupId>commons-io</groupId>
266 <artifactId>commons-io</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000267 </dependency>
268 <dependency>
269 <groupId>com.jayway.jsonpath</groupId>
270 <artifactId>json-path</artifactId>
271 </dependency>
272 <dependency>
273 <groupId>io.springfox</groupId>
274 <artifactId>springfox-swagger2</artifactId>
275 </dependency>
276 <dependency>
277 <groupId>io.springfox</groupId>
278 <artifactId>springfox-swagger-ui</artifactId>
279 </dependency>
280 <dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000281 <groupId>org.jetbrains.kotlin</groupId>
282 <artifactId>kotlin-stdlib</artifactId>
283 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a3c95192018-08-17 19:45:00 +0000284 <dependency>
285 <groupId>org.jetbrains.kotlin</groupId>
286 <artifactId>kotlin-stdlib-jdk8</artifactId>
287 </dependency>
288 <dependency>
289 <groupId>com.fasterxml.jackson.module</groupId>
290 <artifactId>jackson-module-kotlin</artifactId>
291 </dependency>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000292 </dependencies>
293
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000294 <build>
295 <plugins>
296 <plugin>
297 <groupId>org.apache.maven.plugins</groupId>
298 <artifactId>maven-source-plugin</artifactId>
299 <version>3.0.1</version>
300 <executions>
301 <execution>
302 <id>attach-sources</id>
303 <goals>
304 <goal>jar</goal>
305 </goals>
306 </execution>
307 </executions>
308 </plugin>
309
310 <plugin>
311 <artifactId>kotlin-maven-plugin</artifactId>
312 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)d584eae2018-11-15 08:36:28 -0500313 <version>${kotlin.maven.version}</version>
Singal, Kapil (ks220y)b35d55e2018-08-09 20:47:29 +0000314 <executions>
315 <execution>
316 <id>compile</id>
317 <goals>
318 <goal>compile</goal>
319 </goals>
320 <configuration>
321 <sourceDirs>
322 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
323 <sourceDir>${project.basedir}/src/main/java</sourceDir>
324 </sourceDirs>
325 </configuration>
326 </execution>
327 <execution>
328 <id>test-compile</id>
329 <goals>
330 <goal>test-compile</goal>
331 </goals>
332 <configuration>
333 <sourceDirs>
334 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
335 <sourceDir>${project.basedir}/src/test/java</sourceDir>
336 </sourceDirs>
337 </configuration>
338 </execution>
339 </executions>
340 </plugin>
341 <plugin>
342 <groupId>org.apache.maven.plugins</groupId>
343 <artifactId>maven-compiler-plugin</artifactId>
344 <version>3.5.1</version>
345 <configuration>
346 <source>${maven.compiler.source}</source>
347 <target>${maven.compiler.target}</target>
348 </configuration>
349 <executions>
350 <!-- Replacing default-compile as it is treated specially by maven -->
351 <execution>
352 <id>default-compile</id>
353 <phase>none</phase>
354 </execution>
355 <!-- Replacing default-testCompile as it is treated specially by maven -->
356 <execution>
357 <id>default-testCompile</id>
358 <phase>none</phase>
359 </execution>
360 <execution>
361 <id>java-compile</id>
362 <phase>compile</phase>
363 <goals>
364 <goal>compile</goal>
365 </goals>
366 </execution>
367 <execution>
368 <id>java-test-compile</id>
369 <phase>test-compile</phase>
370 <goals>
371 <goal>testCompile</goal>
372 </goals>
373 </execution>
374 </executions>
375 </plugin>
376 </plugins>
377 </build>
378</project>