waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 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 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.so.monitoring</groupId> |
| 26 | <artifactId>so-monitoring</artifactId> |
| 27 | <version>1.3.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | <artifactId>so-monitoring-handler</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | |
| 32 | <properties> |
| 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 34 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 35 | <java.version>1.8</java.version> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 36 | <openpojo.version>0.8.6</openpojo.version> |
| 37 | </properties> |
| 38 | |
| 39 | |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>com.google.guava</groupId> |
| 43 | <artifactId>guava</artifactId> |
waqas.ikram | 3e9ee09 | 2018-08-23 13:26:09 +0100 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.springframework.boot</groupId> |
| 47 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 48 | <exclusions> |
| 49 | <exclusion> |
| 50 | <groupId>org.apache.tomcat</groupId> |
| 51 | <artifactId>tomcat-jdbc</artifactId> |
| 52 | </exclusion> |
| 53 | </exclusions> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.slf4j</groupId> |
| 57 | <artifactId>slf4j-ext</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.apache.httpcomponents</groupId> |
| 61 | <artifactId>httpclient</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.httpcomponents</groupId> |
| 65 | <artifactId>httpcore</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.springframework.boot</groupId> |
| 69 | <artifactId>spring-boot-starter-web</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.springframework.boot</groupId> |
| 73 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 74 | <scope>compile</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.springframework.boot</groupId> |
| 78 | <artifactId>spring-boot-starter-test</artifactId> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>nl.jqno.equalsverifier</groupId> |
| 83 | <artifactId>equalsverifier</artifactId> |
| 84 | <version>2.5.1</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onap.so</groupId> |
| 89 | <artifactId>common</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | </dependency> |
| 92 | </dependencies> |
Gary Wu | 21c0990 | 2018-09-20 09:35:08 -0700 | [diff] [blame^] | 93 | </project> |