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