blob: 637a07a67721bb747f39186fa1a97b0f169570c5 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Brinda Santhe4d1a922018-08-23 23:34:05 -04005 ~ Modifications Copyright © 2018 IBM.
6 ~
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +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 -->
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -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)8bcc7272018-08-15 21:31:10 +000021 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000022 <parent>
23 <groupId>org.onap.ccsdk.apps</groupId>
24 <artifactId>blueprintsprocessor</artifactId>
Timoney, Dan (dt5972)71ed2c92018-10-25 10:34:51 -040025 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000026 </parent>
27 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000028 <artifactId>parent</artifactId>
29 <packaging>pom</packaging>
30 <name>Blueprints Processor Parent</name>
31 <description>Blueprints Processor Parent</description>
32 <properties>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050033 <spring.boot.version>2.0.6.RELEASE</spring.boot.version>
34 <spring.version>5.0.10.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050035 <kotlin.version>1.3.10</kotlin.version>
36 <kotlin.maven.version>1.3.0</kotlin.maven.version>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050037 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000038 <eelf.version>1.0.0</eelf.version>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -050039 <sli.version>0.3.1</sli.version>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050040 <guava.version>26.0-jre</guava.version>
Muthuramalingam, Brinda Santh(bs2796)e96fa502018-11-19 12:48:31 -050041 <jython.version>2.7.1</jython.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000042 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
43 <h2database.version>1.4.197</h2database.version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050044 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050045 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000046 </properties>
47 <dependencyManagement>
48 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000049 <!-- Spring Boot -->
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-parent</artifactId>
53 <version>${spring.boot.version}</version>
54 <type>pom</type>
55 <scope>import</scope>
56 </dependency>
57
58 <!-- Logging Dependencies -->
59 <dependency>
60 <groupId>com.att.eelf</groupId>
61 <artifactId>eelf-core</artifactId>
62 <version>${eelf.version}</version>
63 </dependency>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -050064 <dependency>
65 <groupId>org.onap.logging-analytics</groupId>
66 <artifactId>logging-slf4j</artifactId>
67 <version>${onap.logger.slf4j}</version>
68 </dependency>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000069
70 <!-- Kotlin Dependencies -->
71 <dependency>
72 <groupId>org.jetbrains.kotlin</groupId>
73 <artifactId>kotlin-stdlib</artifactId>
74 <version>${kotlin.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050078 <artifactId>kotlinx-couroutines-core</artifactId>
79 <version>${kotlin.couroutines.version}</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000080 </dependency>
81 <dependency>
82 <groupId>org.jetbrains.kotlin</groupId>
83 <artifactId>kotlin-reflect</artifactId>
84 <version>${kotlin.version}</version>
85 </dependency>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -050086 <dependency>
87 <groupId>org.jetbrains.kotlin</groupId>
88 <artifactId>kotlin-stdlib-jdk8</artifactId>
89 <version>${kotlin.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>org.jetbrains.kotlin</groupId>
93 <artifactId>kotlin-stdlib-jdk7</artifactId>
94 <version>${kotlin.version}</version>
95 </dependency>
96
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -050097 <!-- SLI Version -->
98 <dependency>
99 <groupId>org.onap.ccsdk.sli.core</groupId>
100 <artifactId>sli-provider</artifactId>
101 <version>${sli.version}</version>
102 <exclusions>
103 <exclusion>
104 <groupId>commons-lang</groupId>
105 <artifactId>commons-lang</artifactId>
106 </exclusion>
107 <exclusion>
108 <groupId>org.apache.commons</groupId>
109 <artifactId>*</artifactId>
110 </exclusion>
111 <exclusion>
112 <groupId>org.slf4j</groupId>
113 <artifactId>*</artifactId>
114 </exclusion>
115 <exclusion>
116 <groupId>org.opendaylight.mdsal.model</groupId>
117 <artifactId>*</artifactId>
118 </exclusion>
119 <!--<exclusion>-->
120 <!--<groupId>org.opendaylight.controller</groupId>-->
121 <!--<artifactId>*</artifactId>-->
122 <!--</exclusion>-->
123 <exclusion>
124 <groupId>org.apache.tomcat</groupId>
125 <artifactId>*</artifactId>
126 </exclusion>
127 <exclusion>
128 <groupId>org.apache.karaf.shell</groupId>
129 <artifactId>*</artifactId>
130 </exclusion>
131 <exclusion>
132 <groupId>org.mariadb.jdbc</groupId>
133 <artifactId>*</artifactId>
134 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500135 <exclusion>
136 <groupId>org.powermock</groupId>
137 <artifactId>*</artifactId>
138 </exclusion>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500139 </exclusions>
140 </dependency>
141
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000142
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000143 <!-- Application Module Dependencies -->
144 <dependency>
145 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
146 <artifactId>db-lib</artifactId>
147 <version>${project.version}</version>
148 </dependency>
149 <dependency>
150 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
151 <artifactId>rest-lib</artifactId>
152 <version>${project.version}</version>
153 </dependency>
154 <dependency>
155 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
156 <artifactId>core</artifactId>
157 <version>${project.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000161 <artifactId>execution-service</artifactId>
162 <version>${project.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500166 <artifactId>workflow-service</artifactId>
167 <version>${project.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000171 <artifactId>resource-api</artifactId>
172 <version>${project.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
176 <artifactId>selfservice-api</artifactId>
177 <version>${project.version}</version>
178 </dependency>
179
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500180 <!-- Functions -->
181 <dependency>
182 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
183 <artifactId>resource-resolution</artifactId>
184 <version>${project.version}</version>
185 </dependency>
186
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000187 <!-- Application Component Dependency -->
188 <dependency>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000189 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
190 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500191 <version>${project.version}</version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000192 </dependency>
193
194 <!--Swagger Dependencies -->
195 <dependency>
196 <groupId>io.springfox</groupId>
197 <artifactId>springfox-swagger2</artifactId>
198 <version>${springfox.swagger2.version}</version>
199 </dependency>
200 <dependency>
201 <groupId>io.springfox</groupId>
202 <artifactId>springfox-swagger-ui</artifactId>
203 <version>${springfox.swagger2.version}</version>
204 </dependency>
205
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000206 <!-- Common Libs -->
207 <dependency>
208 <groupId>org.apache.commons</groupId>
209 <artifactId>commons-lang3</artifactId>
210 <version>3.2.1</version>
211 </dependency>
212 <dependency>
213 <groupId>commons-collections</groupId>
214 <artifactId>commons-collections</artifactId>
215 <version>3.2.2</version>
216 </dependency>
217 <dependency>
218 <groupId>commons-io</groupId>
219 <artifactId>commons-io</artifactId>
220 <version>2.6</version>
221 </dependency>
222 <dependency>
223 <groupId>org.apache.velocity</groupId>
224 <artifactId>velocity</artifactId>
225 <version>1.7</version>
226 </dependency>
227 <dependency>
228 <groupId>com.google.guava</groupId>
229 <artifactId>guava</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500230 <version>${guava.version}</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000231 </dependency>
Muthuramalingam, Brinda Santh(bs2796)e96fa502018-11-19 12:48:31 -0500232 <dependency>
233 <groupId>org.python</groupId>
234 <artifactId>jython-standalone</artifactId>
235 <version>${jython.version}</version>
236 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000237
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000238 <!-- Database -->
239 <dependency>
240 <groupId>com.h2database</groupId>
241 <artifactId>h2</artifactId>
242 <version>${h2database.version}</version>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500243 <scope>test</scope>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000244 </dependency>
245 <!-- Test Dependency -->
246 <dependency>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400247 <groupId>org.powermock</groupId>
248 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500249 <version>${powermock.version}</version>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400250 <scope>test</scope>
251 </dependency>
252 <dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000253 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)a9bf0542018-11-10 11:54:05 -0500254 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000255 <version>${kotlin.version}</version>
256 <scope>test</scope>
257 </dependency>
258 </dependencies>
259 </dependencyManagement>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000260
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500261 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000262 <dependency>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500263 <groupId>com.att.eelf</groupId>
264 <artifactId>eelf-core</artifactId>
265 </dependency>
266 <dependency>
267 <groupId>org.onap.logging-analytics</groupId>
268 <artifactId>logging-slf4j</artifactId>
269 </dependency>
270 <dependency>
271 <groupId>org.apache.commons</groupId>
272 <artifactId>commons-lang3</artifactId>
273 </dependency>
274 <dependency>
275 <groupId>commons-collections</groupId>
276 <artifactId>commons-collections</artifactId>
277 </dependency>
278 <dependency>
279 <groupId>commons-io</groupId>
280 <artifactId>commons-io</artifactId>
281 </dependency>
282 <dependency>
283 <groupId>com.jayway.jsonpath</groupId>
284 <artifactId>json-path</artifactId>
285 </dependency>
286 <dependency>
287 <groupId>io.springfox</groupId>
288 <artifactId>springfox-swagger2</artifactId>
289 </dependency>
290 <dependency>
291 <groupId>io.springfox</groupId>
292 <artifactId>springfox-swagger-ui</artifactId>
293 </dependency>
294 <dependency>
295 <groupId>org.jetbrains.kotlin</groupId>
296 <artifactId>kotlin-stdlib</artifactId>
297 </dependency>
298 <dependency>
299 <groupId>org.jetbrains.kotlin</groupId>
300 <artifactId>kotlin-stdlib-jdk8</artifactId>
301 </dependency>
302 <dependency>
303 <groupId>com.fasterxml.jackson.module</groupId>
304 <artifactId>jackson-module-kotlin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000305 </dependency>
306 </dependencies>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500307
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000308 <build>
309 <plugins>
310 <plugin>
311 <groupId>org.jetbrains.kotlin</groupId>
312 <artifactId>kotlin-maven-plugin</artifactId>
Muthuramalingam, Brinda Santh(bs2796)ec928662018-11-15 08:36:28 -0500313 <version>${kotlin.maven.version}</version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000314 <executions>
315 <execution>
316 <id>compile</id>
Muthuramalingam, Brinda Santh(bs2796)ee9f70f2018-11-13 16:47:33 -0500317 <goals>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000318 <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 </plugin>
350 </plugins>
351 </build>
352</project>