blob: 82889ffd3cb8e1762c6c45a8e157fb0a05f216fd [file] [log] [blame]
Pamela Dragosh51cc3732018-05-23 08:38:45 -04001<!--
2 ============LICENSE_START=======================================================
Pamela Dragoshd39c5e52018-05-23 11:47:11 -04003 ONAP Policy Engine - XACML PDP
Pamela Dragosh51cc3732018-05-23 08:38:45 -04004 ================================================================================
HOCKLAac087ee2020-01-10 15:09:21 -06005 Copyright (C) 2018-2020 AT&T Intellectual Property. All rights reserved.
RossC60e13ff2020-06-24 17:03:21 +01006 Modifications Copyright (C) 2020 Nordix Foundation.
Ram Krishna Verma2d9d17f2020-09-16 15:26:58 -04007 Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
Pamela Dragosh51cc3732018-05-23 08:38:45 -04008 ================================================================================
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 Hahn1df1c6a2019-09-12 16:05:18 -040012
Pamela Dragosh51cc3732018-05-23 08:38:45 -040013 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahn1df1c6a2019-09-12 16:05:18 -040014
Pamela Dragosh51cc3732018-05-23 08:38:45 -040015 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 Dragosh1f9897d2018-09-25 09:27:15 -040024 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 Dragosh51cc3732018-05-23 08:38:45 -040026
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040027 <parent>
28 <groupId>org.onap.policy.parent</groupId>
29 <artifactId>integration</artifactId>
Jim Hahn4c5879c2020-07-09 09:37:16 -040030 <version>3.2.0</version>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040031 <relativePath />
32 </parent>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040033
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040034 <groupId>org.onap.policy.xacml-pdp</groupId>
35 <artifactId>policy-xacml-pdp</artifactId>
Pamela Dragosh90b2d302020-10-20 10:58:42 -040036 <version>2.3.4-SNAPSHOT</version>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040037
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040038 <packaging>pom</packaging>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040039
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040040 <name>policy-xacml-pdp</name>
41 <description>This code implements the XACML PDP engine</description>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040042
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040043 <properties>
Jim Hahne1247742020-09-09 10:24:43 -040044 <policy.common.version>1.7.1</policy.common.version>
Pamela Dragosh44808232020-10-20 08:08:17 -040045 <policy.models.version>2.3.5</policy.models.version>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040046 </properties>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040047
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040048 <modules>
Michael Mokryf239a662019-01-31 13:16:55 -060049 <module>main</module>
Pamela Dragosha0265962019-03-03 19:01:08 -050050 <module>applications</module>
Michael Mokryab1824d2019-02-13 10:34:48 -060051 <module>packages</module>
Bilal Aabd92e42019-03-05 13:18:49 -050052 <module>testsuites</module>
Ali Hockla6f145252019-10-01 18:42:04 -050053 <module>xacml-test</module>
Pamela Dragoshf0bd7f42020-10-26 09:59:09 -040054 <module>tutorials</module>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040055 </modules>
Jim Hahn1df1c6a2019-09-12 16:05:18 -040056
Michael Mokryf239a662019-01-31 13:16:55 -060057 <dependencies>
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
Pamela Dragosha0265962019-03-03 19:01:08 -050064 <groupId>io.cucumber</groupId>
65 <artifactId>cucumber-java</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>io.cucumber</groupId>
70 <artifactId>cucumber-junit</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
Michael Mokryf239a662019-01-31 13:16:55 -060074 <groupId>org.assertj</groupId>
75 <artifactId>assertj-core</artifactId>
Michael Mokryf239a662019-01-31 13:16:55 -060076 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.slf4j</groupId>
80 <artifactId>slf4j-ext</artifactId>
Michael Mokryf239a662019-01-31 13:16:55 -060081 </dependency>
82 <dependency>
83 <groupId>org.slf4j</groupId>
84 <artifactId>slf4j-api</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>ch.qos.logback</groupId>
88 <artifactId>logback-core</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>ch.qos.logback</groupId>
92 <artifactId>logback-classic</artifactId>
93 </dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050094 <dependency>
95 <groupId>org.yaml</groupId>
96 <artifactId>snakeyaml</artifactId>
Pamela Dragoshb909b142019-03-09 11:48:44 -050097 </dependency>
98 <dependency>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040099 <groupId>org.projectlombok</groupId>
100 <artifactId>lombok</artifactId>
101 </dependency>
102 <dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -0500103 <groupId>org.json</groupId>
104 <artifactId>json</artifactId>
Pamela Dragoshb909b142019-03-09 11:48:44 -0500105 </dependency>
106 <dependency>
Pamela Dragosh59c38b62019-03-15 14:30:00 -0400107 <groupId>org.onap.policy.models</groupId>
Pamela Dragosh2c847e02019-03-22 14:12:52 -0400108 <artifactId>policy-models-decisions</artifactId>
Pamela Dragosh59c38b62019-03-15 14:30:00 -0400109 <version>${policy.models.version}</version>
Michael Mokry5dd6d162019-04-02 07:33:28 -0500110 </dependency>
Pamela Dragosh59c38b62019-03-15 14:30:00 -0400111 <dependency>
112 <groupId>org.onap.policy.models</groupId>
113 <artifactId>policy-models-tosca</artifactId>
114 <version>${policy.models.version}</version>
Michael Mokry5dd6d162019-04-02 07:33:28 -0500115 </dependency>
Michael Mokryf239a662019-01-31 13:16:55 -0600116 </dependencies>
Jim Hahn1df1c6a2019-09-12 16:05:18 -0400117
Pamela Dragosh1f9897d2018-09-25 09:27:15 -0400118 <distributionManagement>
119 <site>
120 <id>ecomp-site</id>
121 <url>dav:${nexusproxy}${sitePath}</url>
122 </site>
123 </distributionManagement>
124
125 <build>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -0400126 <pluginManagement>
127 <plugins>
128 <plugin>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -0400129 <groupId>org.eclipse.m2e</groupId>
130 <artifactId>lifecycle-mapping</artifactId>
131 <version>1.0.0</version>
132 <configuration>
133 <lifecycleMappingMetadata>
134 <pluginExecutions>
135 <pluginExecution>
136 <pluginExecutionFilter>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-checkstyle-plugin</artifactId>
139 <versionRange>2.17,)</versionRange>
140 <goals>
141 <goal>check</goal>
142 </goals>
143 </pluginExecutionFilter>
144 <action>
145 <ignore />
146 </action>
147 </pluginExecution>
148 </pluginExecutions>
149 </lifecycleMappingMetadata>
150 </configuration>
151 </plugin>
152 </plugins>
153 </pluginManagement>
154 </build>
Pamela Dragosh51cc3732018-05-23 08:38:45 -0400155</project>