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