blob: 9d56829a629089ef9ffe72e4919912120aa900ee [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
Singal, Kapil (ks220y)2d1aa6e2019-01-16 16:51:17 -050017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000019 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050022 <artifactId>functions</artifactId>
Timoney, Dan (dt5972)d7d47b42019-01-04 10:43:33 -050023 <version>0.4.1-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000024 </parent>
Muthuramalingam, Brinda Santh(bs2796)2e942322018-11-15 08:36:28 -050025 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
26 <artifactId>resource-resolution</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000027 <packaging>jar</packaging>
Muthuramalingam, Brinda Santh(bs2796)d2ec19b2018-11-19 12:48:31 -050028 <name>Blueprints Processor Function - Resource Resolution</name>
29 <description>Blueprints Processor Function - Resource Resolution</description>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000030
Singal, Kapil (ks220y)2d1aa6e2019-01-16 16:51:17 -050031 <dependencies>
Alexis de Talhouët3b55bf82019-03-07 11:23:17 -050032 <dependency>
33 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
34 <artifactId>db-lib</artifactId>
35 </dependency>
Singal, Kapil (ks220y)2d1aa6e2019-01-16 16:51:17 -050036 <dependency>
Steve Alphonse Siani6cd702b2019-02-11 23:35:16 -050037 <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId>
38 <artifactId>python-executor</artifactId>
39 </dependency>
40 <dependency>
Singal, Kapil (ks220y)2d1aa6e2019-01-16 16:51:17 -050041 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-data-jpa</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>com.h2database</groupId>
46 <artifactId>h2</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.mariadb.jdbc</groupId>
50 <artifactId>mariadb-java-client</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.hibernate</groupId>
54 <artifactId>hibernate-testing</artifactId>
55 <scope>test</scope>
56 </dependency>
57 </dependencies>
58
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000059</project>