Claudio D. Gasparini | 6668f15 | 2021-02-19 12:19:58 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | /******************************************************************************* |
| 4 | * ============LICENSE_START======================================================= |
| 5 | * ONAP |
| 6 | * ================================================================================ |
| 7 | * Copyright (C) 2021 Wipro Limited. |
| 8 | * Modifications Copyright (C) 2021 Pantheon.tech. |
| 9 | * ============================================================================== |
| 10 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | * you may not use this file except in compliance with the License. |
| 12 | * You may obtain a copy of the License at |
| 13 | * |
| 14 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | * |
| 16 | * Unless required by applicable law or agreed to in writing, software |
| 17 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | * See the License for the specific language governing permissions and |
| 20 | * limitations under the License. |
| 21 | * ============LICENSE_END========================================================= |
| 22 | * |
| 23 | *******************************************************************************/ |
| 24 | --> |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 28 | <parent> |
| 29 | <groupId>org.onap.cps</groupId> |
| 30 | <artifactId>cps-tbdmt-parent</artifactId> |
| 31 | <version>0.0.1-SNAPSHOT</version> |
| 32 | <relativePath>../cps-tbdmt-parent/pom.xml</relativePath> |
| 33 | </parent> |
| 34 | <modelVersion>4.0.0</modelVersion> |
| 35 | |
| 36 | <artifactId>cps-tbdmt-service</artifactId> |
| 37 | <packaging>jar</packaging> |
| 38 | |
krishnaa96 | eb514d6 | 2021-02-26 13:02:24 +0530 | [diff] [blame] | 39 | <properties> |
| 40 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> |
| 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.springframework</groupId> |
| 46 | <artifactId>spring-beans</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.springframework</groupId> |
| 50 | <artifactId>spring-web</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.springframework.data</groupId> |
| 54 | <artifactId>spring-data-commons</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.postgresql</groupId> |
| 58 | <artifactId>postgresql</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.springframework.boot</groupId> |
| 62 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.projectlombok</groupId> |
| 66 | <artifactId>lombok</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>com.hubspot.jinjava</groupId> |
| 70 | <artifactId>jinjava</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.springframework.boot</groupId> |
| 74 | <artifactId>spring-boot-starter-json</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.springframework.boot</groupId> |
| 78 | <artifactId>spring-boot-starter-validation</artifactId> |
| 79 | </dependency> |
Niranjana | 3e59574 | 2021-07-23 05:27:44 +0000 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>com.google.code.gson</groupId> |
| 82 | <artifactId>gson</artifactId> |
| 83 | </dependency> |
Niranjana | 433ba10 | 2021-08-12 04:16:00 +0000 | [diff] [blame] | 84 | <dependency> |
| 85 | <groupId>org.apache.httpcomponents</groupId> |
| 86 | <artifactId>httpclient</artifactId> |
| 87 | </dependency> |
krishnaa96 | eb514d6 | 2021-02-26 13:02:24 +0530 | [diff] [blame] | 88 | <!--Test dependencies--> |
| 89 | <dependency> |
| 90 | <groupId>com.openpojo</groupId> |
| 91 | <artifactId>openpojo</artifactId> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>junit</groupId> |
| 96 | <artifactId>junit</artifactId> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.springframework.boot</groupId> |
| 101 | <artifactId>spring-boot-starter-test</artifactId> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | </dependencies> |
Niranjana | 433ba10 | 2021-08-12 04:16:00 +0000 | [diff] [blame] | 105 | </project> |