Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - XACML PDP |
| 4 | ================================================================================ |
HOCKLA | 82b162b | 2020-01-14 11:39:47 -0600 | [diff] [blame] | 5 | Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 Bell Canada. |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [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 | ============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.xacml-pdp</groupId> |
| 27 | <artifactId>policy-xacml-pdp</artifactId> |
Jim Hahn | 88a247e | 2019-09-10 11:14:09 -0400 | [diff] [blame] | 28 | <version>2.2.0-SNAPSHOT</version> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 29 | </parent> |
| 30 | |
Ram Krishna Verma | ec3592f | 2020-02-05 16:32:11 -0500 | [diff] [blame] | 31 | <artifactId>xacml-main</artifactId> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 32 | |
| 33 | <name>${project.artifactId}</name> |
| 34 | <description>The main module of Policy PDP-X that handles startup, lifecycle management, and parameters.</description> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.policy.common</groupId> |
| 39 | <artifactId>capabilities</artifactId> |
| 40 | <version>${policy.common.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onap.policy.common</groupId> |
| 44 | <artifactId>policy-endpoints</artifactId> |
| 45 | <version>${policy.common.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>commons-cli</groupId> |
| 49 | <artifactId>commons-cli</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.google.code.gson</groupId> |
| 53 | <artifactId>gson</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onap.policy.common</groupId> |
| 57 | <artifactId>common-parameters</artifactId> |
| 58 | <version>${policy.common.version}</version> |
| 59 | </dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 62 | <artifactId>common</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame] | 66 | <groupId>org.onap.policy.common</groupId> |
| 67 | <artifactId>utils-test</artifactId> |
| 68 | <version>${policy.common.version}</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 72 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 73 | <artifactId>monitoring</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 76 | <dependency> |
| 77 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 78 | <artifactId>guard</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | </dependency> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 83 | <artifactId>optimization</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | </dependency> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 86 | <dependency> |
Pamela Dragosh | 4ff3b26 | 2019-12-08 17:44:31 -0500 | [diff] [blame] | 87 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 88 | <artifactId>naming</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
Chenfei Gao | bdef9f5 | 2020-02-28 14:45:48 -0500 | [diff] [blame] | 92 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 93 | <artifactId>native</artifactId> |
| 94 | <version>${project.version}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 97 | <groupId>org.onap.policy.models</groupId> |
| 98 | <artifactId>policy-models-pdp</artifactId> |
| 99 | <version>${policy.models.version}</version> |
| 100 | </dependency> |
jh7358 | 05045cd | 2019-04-25 20:15:28 -0400 | [diff] [blame] | 101 | <dependency> |
HOCKLA | 9ff68b1 | 2019-10-14 14:25:29 -0500 | [diff] [blame] | 102 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 103 | <artifactId>xacml-test</artifactId> |
| 104 | <version>${project.version}</version> |
| 105 | <scope>test</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
jh7358 | 05045cd | 2019-04-25 20:15:28 -0400 | [diff] [blame] | 108 | <groupId>org.powermock</groupId> |
HOCKLA | 82b162b | 2020-01-14 11:39:47 -0600 | [diff] [blame] | 109 | <artifactId>powermock-api-mockito2</artifactId> |
jh7358 | 05045cd | 2019-04-25 20:15:28 -0400 | [diff] [blame] | 110 | <scope>test</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.assertj</groupId> |
| 114 | <artifactId>assertj-core</artifactId> |
| 115 | <scope>test</scope> |
| 116 | </dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 117 | </dependencies> |
| 118 | |
| 119 | <build> |
| 120 | <resources> |
| 121 | <!-- Output the version of the pdpx service --> |
| 122 | <resource> |
| 123 | <directory>src/main/resources</directory> |
| 124 | <filtering>true</filtering> |
| 125 | <includes> |
| 126 | <include>**/version.txt</include> |
| 127 | </includes> |
| 128 | </resource> |
| 129 | <resource> |
| 130 | <directory>src/main/resources</directory> |
| 131 | <filtering>false</filtering> |
| 132 | <excludes> |
| 133 | <exclude>**/version.txt</exclude> |
| 134 | </excludes> |
| 135 | </resource> |
| 136 | </resources> |
| 137 | </build> |
| 138 | |
| 139 | </project> |