Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Pamela Dragosh | d39c5e5 | 2018-05-23 11:47:11 -0400 | [diff] [blame] | 3 | ONAP Policy Engine - XACML PDP |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 4 | ================================================================================ |
HOCKLA | ac087ee | 2020-01-10 15:09:21 -0600 | [diff] [blame] | 5 | Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved. |
RossC | 60e13ff | 2020-06-24 17:03:21 +0100 | [diff] [blame] | 6 | Modifications Copyright (C) 2020 Nordix Foundation. |
Ram Krishna Verma | 2d9d17f | 2020-09-16 15:26:58 -0400 | [diff] [blame^] | 7 | Modifications Copyright (C) 2020 Bell Canada. All rights reserved. |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 12 | |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 13 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 14 | |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 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" |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 26 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.onap.policy.parent</groupId> |
| 29 | <artifactId>integration</artifactId> |
Jim Hahn | 4c5879c | 2020-07-09 09:37:16 -0400 | [diff] [blame] | 30 | <version>3.2.0</version> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 31 | <relativePath /> |
| 32 | </parent> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 33 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 34 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 35 | <artifactId>policy-xacml-pdp</artifactId> |
Jim Hahn | a8d75ac | 2020-09-09 13:53:55 -0400 | [diff] [blame] | 36 | <version>2.3.2-SNAPSHOT</version> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 37 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 38 | <packaging>pom</packaging> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 39 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 40 | <name>policy-xacml-pdp</name> |
| 41 | <description>This code implements the XACML PDP engine</description> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 42 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 43 | <properties> |
Jim Hahn | e124774 | 2020-09-09 10:24:43 -0400 | [diff] [blame] | 44 | <policy.common.version>1.7.1</policy.common.version> |
Ram Krishna Verma | 2d9d17f | 2020-09-16 15:26:58 -0400 | [diff] [blame^] | 45 | <policy.models.version>2.3.2-SNAPSHOT</policy.models.version> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 46 | </properties> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 47 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 48 | <modules> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 49 | <module>main</module> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 50 | <module>applications</module> |
Michael Mokry | ab1824d | 2019-02-13 10:34:48 -0600 | [diff] [blame] | 51 | <module>packages</module> |
Bilal A | abd92e4 | 2019-03-05 13:18:49 -0500 | [diff] [blame] | 52 | <module>testsuites</module> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame] | 53 | <module>xacml-test</module> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 54 | </modules> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 55 | |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>junit</groupId> |
| 59 | <artifactId>junit</artifactId> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 63 | <groupId>io.cucumber</groupId> |
| 64 | <artifactId>cucumber-java</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>io.cucumber</groupId> |
| 69 | <artifactId>cucumber-junit</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 73 | <groupId>org.assertj</groupId> |
| 74 | <artifactId>assertj-core</artifactId> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.slf4j</groupId> |
| 79 | <artifactId>slf4j-ext</artifactId> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.slf4j</groupId> |
| 83 | <artifactId>slf4j-api</artifactId> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>ch.qos.logback</groupId> |
| 87 | <artifactId>logback-core</artifactId> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>ch.qos.logback</groupId> |
| 91 | <artifactId>logback-classic</artifactId> |
| 92 | </dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>org.yaml</groupId> |
| 95 | <artifactId>snakeyaml</artifactId> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 96 | </dependency> |
| 97 | <dependency> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 98 | <groupId>org.projectlombok</groupId> |
| 99 | <artifactId>lombok</artifactId> |
| 100 | </dependency> |
| 101 | <dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 102 | <groupId>org.json</groupId> |
| 103 | <artifactId>json</artifactId> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 104 | </dependency> |
| 105 | <dependency> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 106 | <groupId>org.onap.policy.models</groupId> |
Pamela Dragosh | 2c847e0 | 2019-03-22 14:12:52 -0400 | [diff] [blame] | 107 | <artifactId>policy-models-decisions</artifactId> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 108 | <version>${policy.models.version}</version> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 109 | </dependency> |
Pamela Dragosh | 59c38b6 | 2019-03-15 14:30:00 -0400 | [diff] [blame] | 110 | <dependency> |
| 111 | <groupId>org.onap.policy.models</groupId> |
| 112 | <artifactId>policy-models-tosca</artifactId> |
| 113 | <version>${policy.models.version}</version> |
Michael Mokry | 5dd6d16 | 2019-04-02 07:33:28 -0500 | [diff] [blame] | 114 | </dependency> |
Michael Mokry | f239a66 | 2019-01-31 13:16:55 -0600 | [diff] [blame] | 115 | </dependencies> |
Jim Hahn | 1df1c6a | 2019-09-12 16:05:18 -0400 | [diff] [blame] | 116 | |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 117 | <distributionManagement> |
| 118 | <site> |
| 119 | <id>ecomp-site</id> |
| 120 | <url>dav:${nexusproxy}${sitePath}</url> |
| 121 | </site> |
| 122 | </distributionManagement> |
| 123 | |
| 124 | <build> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 125 | <pluginManagement> |
| 126 | <plugins> |
| 127 | <plugin> |
Pamela Dragosh | 1f9897d | 2018-09-25 09:27:15 -0400 | [diff] [blame] | 128 | <groupId>org.eclipse.m2e</groupId> |
| 129 | <artifactId>lifecycle-mapping</artifactId> |
| 130 | <version>1.0.0</version> |
| 131 | <configuration> |
| 132 | <lifecycleMappingMetadata> |
| 133 | <pluginExecutions> |
| 134 | <pluginExecution> |
| 135 | <pluginExecutionFilter> |
| 136 | <groupId>org.apache.maven.plugins</groupId> |
| 137 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 138 | <versionRange>2.17,)</versionRange> |
| 139 | <goals> |
| 140 | <goal>check</goal> |
| 141 | </goals> |
| 142 | </pluginExecutionFilter> |
| 143 | <action> |
| 144 | <ignore /> |
| 145 | </action> |
| 146 | </pluginExecution> |
| 147 | </pluginExecutions> |
| 148 | </lifecycleMappingMetadata> |
| 149 | </configuration> |
| 150 | </plugin> |
| 151 | </plugins> |
| 152 | </pluginManagement> |
| 153 | </build> |
Pamela Dragosh | 51cc373 | 2018-05-23 08:38:45 -0400 | [diff] [blame] | 154 | </project> |