blob: 5c4620880fd7557246ee17fbebac81ff9775b832 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
5 ~ Modifications Copyright © 2018 IBM.
6 ~
7 ~ 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 -->
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -050019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onap.ccsdk.apps</groupId>
24 <artifactId>components</artifactId>
Timoney, Dan (dt5972)6f870c22018-10-25 10:34:51 -040025 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000026 </parent>
27 <groupId>org.onap.ccsdk.apps.components</groupId>
28 <artifactId>parent</artifactId>
29 <name>App Components Parent</name>
30 <packaging>pom</packaging>
31 <properties>
Muthuramalingam, Brinda Santh(bs2796)a4863f42018-12-01 19:54:07 -050032 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
33 <spring.version>5.1.3.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)758fde42018-11-15 08:36:28 -050034 <kotlin.version>1.3.10</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)16841972018-11-24 14:25:26 -050035 <kotlin.maven.version>1.3.10</kotlin.maven.version>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -050036 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)16841972018-11-24 14:25:26 -050037 <grpc.version>1.16.1</grpc.version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000038 <eelf.version>1.0.0</eelf.version>
39 <guava.version>26.0-jre</guava.version>
40 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
41 <h2database.version>1.4.197</h2database.version>
Timoney, Dan (dt5972)6f870c22018-10-25 10:34:51 -040042 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -050043 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000044 </properties>
45 <dependencyManagement>
46 <dependencies>
47 <!-- Spring boot -->
48 <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>
57 <groupId>com.att.eelf</groupId>
58 <artifactId>eelf-core</artifactId>
59 <version>${eelf.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.onap.logging-analytics</groupId>
63 <artifactId>logging-slf4j</artifactId>
64 <version>${onap.logger.slf4j}</version>
65 </dependency>
66
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>
80 <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>
Muthuramalingam, Brinda Santh(bs2796)6cba7f82018-12-04 10:25:44 -050095 <groupId>org.apache.commons</groupId>
96 <artifactId>commons-compress</artifactId>
97 <version>1.15</version>
98 </dependency>
99 <dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000100 <groupId>org.apache.velocity</groupId>
101 <artifactId>velocity</artifactId>
102 <version>1.7</version>
103 </dependency>
104 <dependency>
105 <groupId>com.google.guava</groupId>
106 <artifactId>guava</artifactId>
107 <version>${guava.version}</version>
108 </dependency>
109
110 <!-- Kotlin Dependencies -->
111 <dependency>
112 <groupId>org.jetbrains.kotlin</groupId>
113 <artifactId>kotlin-stdlib</artifactId>
114 <version>${kotlin.version}</version>
115 </dependency>
116 <dependency>
Muthuramalingam, Brinda Santh(bs2796)16841972018-11-24 14:25:26 -0500117 <groupId>org.jetbrains.kotlinx</groupId>
118 <artifactId>kotlinx-coroutines-core</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500119 <version>${kotlin.couroutines.version}</version>
120 </dependency>
121 <dependency>
122 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000123 <artifactId>kotlin-reflect</artifactId>
124 <version>${kotlin.version}</version>
125 </dependency>
126 <dependency>
127 <groupId>org.jetbrains.kotlin</groupId>
128 <artifactId>kotlin-stdlib-jdk8</artifactId>
129 <version>${kotlin.version}</version>
130 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-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>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000136
Muthuramalingam, Brinda Santh(bs2796)16841972018-11-24 14:25:26 -0500137 <!-- GRPC Dependencies -->
138 <dependency>
139 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)a4863f42018-12-01 19:54:07 -0500140 <artifactId>grpc-core</artifactId>
141 <version>${grpc.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>io.grpc</groupId>
Muthuramalingam, Brinda Santh(bs2796)16841972018-11-24 14:25:26 -0500145 <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
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000159
160 <!-- Database -->
161 <dependency>
162 <groupId>com.h2database</groupId>
163 <artifactId>h2</artifactId>
164 <version>${h2database.version}</version>
165 </dependency>
166
167
168 <!-- Application Components -->
169 <dependency>
170 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
171 <artifactId>core</artifactId>
172 <version>${project.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000176 <artifactId>resource-dict</artifactId>
177 <version>${project.version}</version>
178 </dependency>
179
180 <!-- Testing Dependencies -->
181 <dependency>
182 <groupId>org.powermock</groupId>
183 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500184 <version>${powermock.version}</version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000185 <scope>test</scope>
186 </dependency>
187 <dependency>
188 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500189 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000190 <version>${kotlin.version}</version>
191 <scope>test</scope>
192 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a4863f42018-12-01 19:54:07 -0500193 <dependency>
194 <groupId>io.grpc</groupId>
195 <artifactId>grpc-testing</artifactId>
196 <version>${grpc.version}</version>
197 <scope>test</scope>
198 </dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000199 </dependencies>
200 </dependencyManagement>
201
202 <dependencies>
203 <dependency>
204 <groupId>com.att.eelf</groupId>
205 <artifactId>eelf-core</artifactId>
206 </dependency>
207 <dependency>
208 <groupId>org.onap.logging-analytics</groupId>
209 <artifactId>logging-slf4j</artifactId>
210 </dependency>
211 <dependency>
212 <groupId>org.apache.commons</groupId>
213 <artifactId>commons-lang3</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500214 </dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000215 <dependency>
216 <groupId>commons-collections</groupId>
217 <artifactId>commons-collections</artifactId>
218 </dependency>
219 <dependency>
220 <groupId>commons-io</groupId>
221 <artifactId>commons-io</artifactId>
222 </dependency>
223 <dependency>
Muthuramalingam, Brinda Santh(bs2796)6cba7f82018-12-04 10:25:44 -0500224 <groupId>org.apache.commons</groupId>
225 <artifactId>commons-compress</artifactId>
226 </dependency>
227 <dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000228 <groupId>com.jayway.jsonpath</groupId>
229 <artifactId>json-path</artifactId>
230 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500231 <dependency>
232 <groupId>com.google.guava</groupId>
233 <artifactId>guava</artifactId>
234 </dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000235 <dependency>
236 <groupId>io.springfox</groupId>
237 <artifactId>springfox-swagger2</artifactId>
238 </dependency>
239 <dependency>
240 <groupId>io.springfox</groupId>
241 <artifactId>springfox-swagger-ui</artifactId>
242 </dependency>
243 <dependency>
244 <groupId>org.jetbrains.kotlin</groupId>
245 <artifactId>kotlin-stdlib</artifactId>
246 </dependency>
247 <dependency>
248 <groupId>org.jetbrains.kotlin</groupId>
249 <artifactId>kotlin-stdlib-jdk8</artifactId>
250 </dependency>
251 <dependency>
Muthuramalingam, Brinda Santh(bs2796)16841972018-11-24 14:25:26 -0500252 <groupId>org.jetbrains.kotlinx</groupId>
253 <artifactId>kotlinx-coroutines-core</artifactId>
254 </dependency>
255 <dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000256 <groupId>com.fasterxml.jackson.module</groupId>
257 <artifactId>jackson-module-kotlin</artifactId>
258 </dependency>
259 </dependencies>
260
261 <build>
262 <plugins>
263 <plugin>
264 <groupId>org.apache.maven.plugins</groupId>
265 <artifactId>maven-source-plugin</artifactId>
266 <version>3.0.1</version>
267 <executions>
268 <execution>
269 <id>attach-sources</id>
270 <goals>
271 <goal>jar</goal>
272 </goals>
273 </execution>
274 </executions>
275 </plugin>
276
277 <plugin>
278 <artifactId>kotlin-maven-plugin</artifactId>
279 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)758fde42018-11-15 08:36:28 -0500280 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000281 <executions>
282 <execution>
283 <id>compile</id>
284 <goals>
285 <goal>compile</goal>
286 </goals>
287 <configuration>
288 <sourceDirs>
289 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
290 <sourceDir>${project.basedir}/src/main/java</sourceDir>
291 </sourceDirs>
292 </configuration>
293 </execution>
294 <execution>
295 <id>test-compile</id>
296 <goals>
297 <goal>test-compile</goal>
298 </goals>
299 <configuration>
300 <sourceDirs>
301 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
302 <sourceDir>${project.basedir}/src/test/java</sourceDir>
303 </sourceDirs>
304 </configuration>
305 </execution>
306 </executions>
307 </plugin>
308 <plugin>
309 <groupId>org.apache.maven.plugins</groupId>
310 <artifactId>maven-compiler-plugin</artifactId>
311 <version>3.5.1</version>
312 <configuration>
313 <source>${maven.compiler.source}</source>
314 <target>${maven.compiler.target}</target>
315 </configuration>
316 <executions>
317 <!-- Replacing default-compile as it is treated specially by maven -->
318 <execution>
319 <id>default-compile</id>
320 <phase>none</phase>
321 </execution>
322 <!-- Replacing default-testCompile as it is treated specially by maven -->
323 <execution>
324 <id>default-testCompile</id>
325 <phase>none</phase>
326 </execution>
327 <execution>
328 <id>java-compile</id>
329 <phase>compile</phase>
330 <goals>
331 <goal>compile</goal>
332 </goals>
333 </execution>
334 <execution>
335 <id>java-test-compile</id>
336 <phase>test-compile</phase>
337 <goals>
338 <goal>testCompile</goal>
339 </goals>
340 </execution>
341 </executions>
342 </plugin>
343 </plugins>
344 </build>
345</project>