Muthuramalingam, Brinda Santh(bs2796) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame] | 1 | <?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) | 2d1aa6e | 2019-01-16 16:51:17 -0500 | [diff] [blame] | 17 | <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) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame] | 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | <parent> |
| 21 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
Muthuramalingam, Brinda Santh(bs2796) | 2e94232 | 2018-11-15 08:36:28 -0500 | [diff] [blame] | 22 | <artifactId>functions</artifactId> |
Timoney, Dan (dt5972) | d7d47b4 | 2019-01-04 10:43:33 -0500 | [diff] [blame] | 23 | <version>0.4.1-SNAPSHOT</version> |
Muthuramalingam, Brinda Santh(bs2796) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame] | 24 | </parent> |
Muthuramalingam, Brinda Santh(bs2796) | 2e94232 | 2018-11-15 08:36:28 -0500 | [diff] [blame] | 25 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId> |
| 26 | <artifactId>resource-resolution</artifactId> |
Muthuramalingam, Brinda Santh(bs2796) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame] | 27 | <packaging>jar</packaging> |
Muthuramalingam, Brinda Santh(bs2796) | d2ec19b | 2018-11-19 12:48:31 -0500 | [diff] [blame] | 28 | <name>Blueprints Processor Function - Resource Resolution</name> |
| 29 | <description>Blueprints Processor Function - Resource Resolution</description> |
Muthuramalingam, Brinda Santh(bs2796) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame] | 30 | |
Singal, Kapil (ks220y) | 2d1aa6e | 2019-01-16 16:51:17 -0500 | [diff] [blame] | 31 | <dependencies> |
Alexis de Talhouët | 3b55bf8 | 2019-03-07 11:23:17 -0500 | [diff] [blame] | 32 | <dependency> |
| 33 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId> |
| 34 | <artifactId>db-lib</artifactId> |
| 35 | </dependency> |
Singal, Kapil (ks220y) | 2d1aa6e | 2019-01-16 16:51:17 -0500 | [diff] [blame] | 36 | <dependency> |
Steve Alphonse Siani | 6cd702b | 2019-02-11 23:35:16 -0500 | [diff] [blame] | 37 | <groupId>org.onap.ccsdk.apps.blueprintsprocessor.functions</groupId> |
| 38 | <artifactId>python-executor</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
Singal, Kapil (ks220y) | 2d1aa6e | 2019-01-16 16:51:17 -0500 | [diff] [blame] | 41 | <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) | 4b3c8a0 | 2018-08-15 21:31:10 +0000 | [diff] [blame] | 59 | </project> |