ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Nordix Foundation. |
HOCKLA | 9df1718 | 2020-01-14 11:06:29 -0600 | [diff] [blame] | 4 | Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. |
Ram Krishna Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame^] | 5 | Modifications Copyright (C) 2020 Bell Canada. |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | |
| 19 | SPDX-License-Identifier: Apache-2.0 |
| 20 | ============LICENSE_END========================================================= |
| 21 | --> |
| 22 | |
| 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 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.pap</groupId> |
| 28 | <artifactId>policy-pap</artifactId> |
jrh3 | ad55e1e | 2019-09-10 11:04:50 -0400 | [diff] [blame] | 29 | <version>2.2.0-SNAPSHOT</version> |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
Ram Krishna Verma | 9a96d62 | 2020-02-05 16:29:58 -0500 | [diff] [blame^] | 32 | <artifactId>pap-main</artifactId> |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 33 | |
| 34 | <name>${project.artifactId}</name> |
| 35 | <description>The main module of Policy Administration Backend that handles startup, lifecycle management, and parameters.</description> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>commons-cli</groupId> |
| 40 | <artifactId>commons-cli</artifactId> |
| 41 | </dependency> |
| 42 | <dependency> |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 43 | <groupId>org.onap.policy.common</groupId> |
| 44 | <artifactId>common-parameters</artifactId> |
| 45 | <version>${policy.common.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onap.policy.common</groupId> |
| 49 | <artifactId>utils</artifactId> |
| 50 | <version>${policy.common.version}</version> |
| 51 | </dependency> |
ramverma | 370c227 | 2019-02-05 10:28:22 +0000 | [diff] [blame] | 52 | <dependency> |
| 53 | <groupId>org.onap.policy.common</groupId> |
| 54 | <artifactId>policy-endpoints</artifactId> |
| 55 | <version>${policy.common.version}</version> |
| 56 | </dependency> |
ramverma | 74ead72 | 2019-02-07 21:52:23 +0000 | [diff] [blame] | 57 | <dependency> |
jh7358 | 92eabbc | 2019-02-22 16:41:54 -0500 | [diff] [blame] | 58 | <groupId>org.onap.policy.common</groupId> |
| 59 | <artifactId>gson</artifactId> |
| 60 | <version>${policy.common.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
Jim Hahn | 4a3cfdf | 2019-03-12 11:53:22 -0400 | [diff] [blame] | 63 | <groupId>org.onap.policy.models</groupId> |
Jim Hahn | 602572e | 2019-03-24 08:13:58 -0400 | [diff] [blame] | 64 | <artifactId>policy-models-pap</artifactId> |
| 65 | <version>${policy.models.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.onap.policy.models</groupId> |
Jim Hahn | 0050926 | 2019-04-07 10:34:45 -0400 | [diff] [blame] | 69 | <artifactId>policy-models-pdp</artifactId> |
Jim Hahn | 602572e | 2019-03-24 08:13:58 -0400 | [diff] [blame] | 70 | <version>${policy.models.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.onap.policy.models</groupId> |
| 74 | <artifactId>policy-models-provider</artifactId> |
Jim Hahn | 4a3cfdf | 2019-03-12 11:53:22 -0400 | [diff] [blame] | 75 | <version>${policy.models.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
ramverma | 74ead72 | 2019-02-07 21:52:23 +0000 | [diff] [blame] | 78 | <groupId>org.projectlombok</groupId> |
| 79 | <artifactId>lombok</artifactId> |
ramverma | 74ead72 | 2019-02-07 21:52:23 +0000 | [diff] [blame] | 80 | <scope>provided</scope> |
| 81 | </dependency> |
Jim Hahn | b020843 | 2019-02-26 14:09:35 -0500 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.onap.policy.common</groupId> |
| 84 | <artifactId>utils-test</artifactId> |
| 85 | <version>${policy.common.version}</version> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.powermock</groupId> |
HOCKLA | 9df1718 | 2020-01-14 11:06:29 -0600 | [diff] [blame] | 90 | <artifactId>powermock-api-mockito2</artifactId> |
Jim Hahn | b020843 | 2019-02-26 14:09:35 -0500 | [diff] [blame] | 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.assertj</groupId> |
| 95 | <artifactId>assertj-core</artifactId> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
ramverma | 63d40cd | 2019-04-09 16:49:43 +0000 | [diff] [blame] | 98 | <dependency> |
| 99 | <groupId>com.h2database</groupId> |
| 100 | <artifactId>h2</artifactId> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 103 | </dependencies> |
| 104 | |
| 105 | <build> |
| 106 | <resources> |
| 107 | <!-- Output the version of the pap service --> |
| 108 | <resource> |
| 109 | <directory>src/main/resources</directory> |
| 110 | <filtering>true</filtering> |
| 111 | <includes> |
| 112 | <include>**/version.txt</include> |
| 113 | </includes> |
| 114 | </resource> |
| 115 | <resource> |
| 116 | <directory>src/main/resources</directory> |
| 117 | <filtering>false</filtering> |
| 118 | <excludes> |
| 119 | <exclude>**/version.txt</exclude> |
| 120 | </excludes> |
| 121 | </resource> |
| 122 | </resources> |
| 123 | </build> |
| 124 | </project> |