blob: 4527fd96757078b013656d42c234edf27872a144 [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.
Pamela Dragosh51cc3732018-05-23 08:38:45 -04007 ================================================================================
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
Jim Hahn1df1c6a2019-09-12 16:05:18 -040011
Pamela Dragosh51cc3732018-05-23 08:38:45 -040012 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahn1df1c6a2019-09-12 16:05:18 -040013
Pamela Dragosh51cc3732018-05-23 08:38:45 -040014 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"
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040023 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040025
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040026 <parent>
27 <groupId>org.onap.policy.parent</groupId>
28 <artifactId>integration</artifactId>
Pamela Dragosh656056a2020-05-28 14:34:50 -040029 <version>3.2.0-SNAPSHOT</version>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040030 <relativePath />
31 </parent>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040032
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040033 <groupId>org.onap.policy.xacml-pdp</groupId>
34 <artifactId>policy-xacml-pdp</artifactId>
a.sreekumarb583c352020-05-21 17:02:49 +010035 <version>2.3.0-SNAPSHOT</version>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040036
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040037 <packaging>pom</packaging>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040038
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040039 <name>policy-xacml-pdp</name>
40 <description>This code implements the XACML PDP engine</description>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040041
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040042 <properties>
Jim Hahn9213cdf2020-05-29 11:32:18 -040043 <policy.common.version>1.7.0-SNAPSHOT</policy.common.version>
44 <policy.models.version>2.3.0-SNAPSHOT</policy.models.version>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040045 </properties>
Pamela Dragosh51cc3732018-05-23 08:38:45 -040046
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040047 <modules>
Michael Mokryf239a662019-01-31 13:16:55 -060048 <module>main</module>
Pamela Dragosha0265962019-03-03 19:01:08 -050049 <module>applications</module>
Michael Mokryab1824d2019-02-13 10:34:48 -060050 <module>packages</module>
Bilal Aabd92e42019-03-05 13:18:49 -050051 <module>testsuites</module>
Ali Hockla6f145252019-10-01 18:42:04 -050052 <module>xacml-test</module>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -040053 </modules>
Jim Hahn1df1c6a2019-09-12 16:05:18 -040054
Michael Mokryf239a662019-01-31 13:16:55 -060055 <dependencies>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
Pamela Dragosha0265962019-03-03 19:01:08 -050062 <groupId>io.cucumber</groupId>
63 <artifactId>cucumber-java</artifactId>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>io.cucumber</groupId>
68 <artifactId>cucumber-junit</artifactId>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
Michael Mokryf239a662019-01-31 13:16:55 -060072 <groupId>org.assertj</groupId>
73 <artifactId>assertj-core</artifactId>
Michael Mokryf239a662019-01-31 13:16:55 -060074 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.slf4j</groupId>
78 <artifactId>slf4j-ext</artifactId>
Michael Mokryf239a662019-01-31 13:16:55 -060079 </dependency>
80 <dependency>
81 <groupId>org.slf4j</groupId>
82 <artifactId>slf4j-api</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>ch.qos.logback</groupId>
86 <artifactId>logback-core</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>ch.qos.logback</groupId>
90 <artifactId>logback-classic</artifactId>
91 </dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050092 <dependency>
93 <groupId>org.yaml</groupId>
94 <artifactId>snakeyaml</artifactId>
Pamela Dragoshb909b142019-03-09 11:48:44 -050095 </dependency>
96 <dependency>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040097 <groupId>org.projectlombok</groupId>
98 <artifactId>lombok</artifactId>
99 </dependency>
100 <dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -0500101 <groupId>org.json</groupId>
102 <artifactId>json</artifactId>
Pamela Dragoshb909b142019-03-09 11:48:44 -0500103 </dependency>
104 <dependency>
Pamela Dragosh59c38b62019-03-15 14:30:00 -0400105 <groupId>org.onap.policy.models</groupId>
Pamela Dragosh2c847e02019-03-22 14:12:52 -0400106 <artifactId>policy-models-decisions</artifactId>
Pamela Dragosh59c38b62019-03-15 14:30:00 -0400107 <version>${policy.models.version}</version>
Michael Mokry5dd6d162019-04-02 07:33:28 -0500108 </dependency>
Pamela Dragosh59c38b62019-03-15 14:30:00 -0400109 <dependency>
110 <groupId>org.onap.policy.models</groupId>
111 <artifactId>policy-models-tosca</artifactId>
112 <version>${policy.models.version}</version>
Michael Mokry5dd6d162019-04-02 07:33:28 -0500113 </dependency>
Michael Mokryf239a662019-01-31 13:16:55 -0600114 </dependencies>
Jim Hahn1df1c6a2019-09-12 16:05:18 -0400115
Pamela Dragosh1f9897d2018-09-25 09:27:15 -0400116 <distributionManagement>
117 <site>
118 <id>ecomp-site</id>
119 <url>dav:${nexusproxy}${sitePath}</url>
120 </site>
121 </distributionManagement>
122
123 <build>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -0400124 <pluginManagement>
125 <plugins>
126 <plugin>
Pamela Dragosh1f9897d2018-09-25 09:27:15 -0400127 <groupId>org.eclipse.m2e</groupId>
128 <artifactId>lifecycle-mapping</artifactId>
129 <version>1.0.0</version>
130 <configuration>
131 <lifecycleMappingMetadata>
132 <pluginExecutions>
133 <pluginExecution>
134 <pluginExecutionFilter>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-checkstyle-plugin</artifactId>
137 <versionRange>2.17,)</versionRange>
138 <goals>
139 <goal>check</goal>
140 </goals>
141 </pluginExecutionFilter>
142 <action>
143 <ignore />
144 </action>
145 </pluginExecution>
146 </pluginExecutions>
147 </lifecycleMappingMetadata>
148 </configuration>
149 </plugin>
150 </plugins>
151 </pluginManagement>
152 </build>
Pamela Dragosh51cc3732018-05-23 08:38:45 -0400153</project>