Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 4 | Modified Copyright (C) 2018 Samsung Electronics Co., Ltd. |
Chenfei Gao | 6ea2e1b | 2019-01-31 16:09:09 -0500 | [diff] [blame] | 5 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 Bell Canada. |
Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | |
| 20 | SPDX-License-Identifier: Apache-2.0 |
| 21 | ============LICENSE_END========================================================= |
| 22 | --> |
liamfallon | 5b7f107 | 2019-09-05 22:25:55 +0000 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.api</groupId> |
| 28 | <artifactId>policy-api</artifactId> |
Jim Hahn | 27b200a | 2020-05-20 08:24:16 -0400 | [diff] [blame^] | 29 | <version>2.2.5-SNAPSHOT</version> |
Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 30 | </parent> |
| 31 | |
Ram Krishna Verma | 1d4ce8d | 2020-02-05 16:28:33 -0500 | [diff] [blame] | 32 | <artifactId>api-main</artifactId> |
Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 33 | |
| 34 | <name>${project.artifactId}</name> |
| 35 | <description>The main module of Policy Api that handles startup, lifecycle management, and parameters.</description> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.onap.policy.common</groupId> |
| 40 | <artifactId>capabilities</artifactId> |
| 41 | <version>${policy.common.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 44 | <groupId>commons-cli</groupId> |
| 45 | <artifactId>commons-cli</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>com.google.code.gson</groupId> |
| 49 | <artifactId>gson</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.onap.policy.common</groupId> |
| 53 | <artifactId>common-parameters</artifactId> |
| 54 | <version>${policy.common.version}</version> |
| 55 | </dependency> |
Chenfei Gao | 0c117e6 | 2019-02-18 16:28:54 -0500 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.onap.policy.models</groupId> |
Chenfei Gao | 851984a | 2019-03-06 18:54:25 -0500 | [diff] [blame] | 58 | <artifactId>policy-models-tosca</artifactId> |
Chenfei Gao | 0c117e6 | 2019-02-18 16:28:54 -0500 | [diff] [blame] | 59 | <version>${policy.models.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
Chenfei Gao | 61b6623 | 2019-03-15 11:28:16 -0400 | [diff] [blame] | 62 | <groupId>org.onap.policy.models</groupId> |
| 63 | <artifactId>policy-models-provider</artifactId> |
| 64 | <version>${policy.models.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
liamfallon | 5b7f107 | 2019-09-05 22:25:55 +0000 | [diff] [blame] | 67 | <groupId>org.onap.policy.models</groupId> |
| 68 | <artifactId>policy-models-examples</artifactId> |
| 69 | <version>${policy.models.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
Chenfei Gao | 20390c6 | 2019-09-16 22:20:34 -0400 | [diff] [blame] | 72 | <groupId>org.onap.policy.common</groupId> |
| 73 | <artifactId>utils</artifactId> |
| 74 | <version>${policy.common.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
Chenfei Gao | 0c117e6 | 2019-02-18 16:28:54 -0500 | [diff] [blame] | 77 | <groupId>org.projectlombok</groupId> |
| 78 | <artifactId>lombok</artifactId> |
Chenfei Gao | 0c117e6 | 2019-02-18 16:28:54 -0500 | [diff] [blame] | 79 | <scope>provided</scope> |
| 80 | </dependency> |
Chenfei Gao | e156fb8 | 2019-04-02 08:55:17 -0400 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>com.h2database</groupId> |
| 83 | <artifactId>h2</artifactId> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.mariadb.jdbc</groupId> |
| 88 | <artifactId>mariadb-java-client</artifactId> |
| 89 | </dependency> |
Chenfei Gao | 74d69a2 | 2019-04-04 21:47:01 -0400 | [diff] [blame] | 90 | <dependency> |
| 91 | <groupId>org.assertj</groupId> |
| 92 | <artifactId>assertj-core</artifactId> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
ramverma | 2ab8ff1 | 2019-06-26 15:00:39 +0000 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.onap.policy.common</groupId> |
| 97 | <artifactId>utils-test</artifactId> |
| 98 | <version>${policy.common.version}</version> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
Krishnajinka | da9e01a | 2018-08-31 20:01:30 +0900 | [diff] [blame] | 101 | </dependencies> |
| 102 | |
| 103 | <build> |
| 104 | <resources> |
| 105 | <!-- Output the version of the api service --> |
| 106 | <resource> |
| 107 | <directory>src/main/resources</directory> |
| 108 | <filtering>true</filtering> |
| 109 | <includes> |
| 110 | <include>**/version.txt</include> |
| 111 | </includes> |
| 112 | </resource> |
| 113 | <resource> |
| 114 | <directory>src/main/resources</directory> |
| 115 | <filtering>false</filtering> |
| 116 | <excludes> |
| 117 | <exclude>**/version.txt</exclude> |
| 118 | </excludes> |
| 119 | </resource> |
| 120 | </resources> |
| 121 | </build> |
| 122 | |
| 123 | </project> |