4b4d8f7625f6b455b840b2bccc3c95935da05b30
[policy/xacml-pdp.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - XACML PDP
4   ================================================================================
5   Copyright (C) 2018-2020 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/maven-v4_0_0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.policy.parent</groupId>
27         <artifactId>integration</artifactId>
28         <version>3.2.0-SNAPSHOT</version>
29         <relativePath />
30     </parent>
31
32     <groupId>org.onap.policy.xacml-pdp</groupId>
33     <artifactId>policy-xacml-pdp</artifactId>
34     <version>2.3.0-SNAPSHOT</version>
35
36     <packaging>pom</packaging>
37
38     <name>policy-xacml-pdp</name>
39     <description>This code implements the XACML PDP engine</description>
40
41     <properties>
42         <policy.common.version>1.7.0-SNAPSHOT</policy.common.version>
43         <policy.models.version>2.3.0-SNAPSHOT</policy.models.version>
44     </properties>
45
46     <modules>
47         <module>main</module>
48         <module>applications</module>
49         <module>packages</module>
50         <module>testsuites</module>
51         <module>xacml-test</module>
52     </modules>
53
54     <dependencies>
55         <dependency>
56             <groupId>junit</groupId>
57             <artifactId>junit</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>io.cucumber</groupId>
62             <artifactId>cucumber-java</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>io.cucumber</groupId>
67             <artifactId>cucumber-junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.assertj</groupId>
72             <artifactId>assertj-core</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.slf4j</groupId>
77             <artifactId>slf4j-ext</artifactId>
78             <version>1.8.0-beta2</version>
79         </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>
92         <dependency>
93             <groupId>org.yaml</groupId>
94             <artifactId>snakeyaml</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.projectlombok</groupId>
98             <artifactId>lombok</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.json</groupId>
102             <artifactId>json</artifactId>
103             <version>20180813</version>
104         </dependency>
105         <dependency>
106             <groupId>org.onap.policy.models</groupId>
107             <artifactId>policy-models-decisions</artifactId>
108             <version>${policy.models.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>org.onap.policy.models</groupId>
112             <artifactId>policy-models-tosca</artifactId>
113             <version>${policy.models.version}</version>
114         </dependency>
115     </dependencies>
116
117     <distributionManagement>
118         <site>
119             <id>ecomp-site</id>
120             <url>dav:${nexusproxy}${sitePath}</url>
121         </site>
122     </distributionManagement>
123
124     <build>
125         <pluginManagement>
126             <plugins>
127                 <plugin>
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>
154 </project>