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> |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 42 | <groupId>org.onap.policy.common</groupId> |
| 43 | <artifactId>common-parameters</artifactId> |
| 44 | <version>${policy.common.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.policy.common</groupId> |
| 48 | <artifactId>utils</artifactId> |
| 49 | <version>${policy.common.version}</version> |
| 50 | </dependency> |
ramverma | 370c227 | 2019-02-05 10:28:22 +0000 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.onap.policy.common</groupId> |
| 53 | <artifactId>policy-endpoints</artifactId> |
| 54 | <version>${policy.common.version}</version> |
| 55 | </dependency> |
ramverma | 74ead72 | 2019-02-07 21:52:23 +0000 | [diff] [blame] | 56 | <dependency> |
jh7358 | 92eabbc | 2019-02-22 16:41:54 -0500 | [diff] [blame] | 57 | <groupId>org.onap.policy.common</groupId> |
| 58 | <artifactId>gson</artifactId> |
| 59 | <version>${policy.common.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
Jim Hahn | 4a3cfdf | 2019-03-12 11:53:22 -0400 | [diff] [blame] | 62 | <groupId>org.onap.policy.models</groupId> |
Jim Hahn | 602572e | 2019-03-24 08:13:58 -0400 | [diff] [blame^] | 63 | <artifactId>policy-models-pap</artifactId> |
| 64 | <version>${policy.models.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.onap.policy.models</groupId> |
| 68 | <artifactId>models-pdp</artifactId> |
| 69 | <version>${policy.models.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.policy.models</groupId> |
| 73 | <artifactId>policy-models-provider</artifactId> |
Jim Hahn | 4a3cfdf | 2019-03-12 11:53:22 -0400 | [diff] [blame] | 74 | <version>${policy.models.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
ramverma | 74ead72 | 2019-02-07 21:52:23 +0000 | [diff] [blame] | 77 | <groupId>org.projectlombok</groupId> |
| 78 | <artifactId>lombok</artifactId> |
ramverma | 74ead72 | 2019-02-07 21:52:23 +0000 | [diff] [blame] | 79 | <scope>provided</scope> |
| 80 | </dependency> |
Jim Hahn | b020843 | 2019-02-26 14:09:35 -0500 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.onap.policy.common</groupId> |
| 83 | <artifactId>utils-test</artifactId> |
| 84 | <version>${policy.common.version}</version> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.powermock</groupId> |
| 89 | <artifactId>powermock-api-mockito</artifactId> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.assertj</groupId> |
| 94 | <artifactId>assertj-core</artifactId> |
| 95 | <scope>test</scope> |
| 96 | </dependency> |
ramverma | 07b7ba0 | 2019-01-31 13:09:00 +0000 | [diff] [blame] | 97 | </dependencies> |
| 98 | |
| 99 | <build> |
| 100 | <resources> |
| 101 | <!-- Output the version of the pap service --> |
| 102 | <resource> |
| 103 | <directory>src/main/resources</directory> |
| 104 | <filtering>true</filtering> |
| 105 | <includes> |
| 106 | <include>**/version.txt</include> |
| 107 | </includes> |
| 108 | </resource> |
| 109 | <resource> |
| 110 | <directory>src/main/resources</directory> |
| 111 | <filtering>false</filtering> |
| 112 | <excludes> |
| 113 | <exclude>**/version.txt</exclude> |
| 114 | </excludes> |
| 115 | </resource> |
| 116 | </resources> |
| 117 | </build> |
| 118 | </project> |