1 <?xml version="1.0" encoding="UTF-8"?>
3 ============LICENSE_START=======================================================
5 ================================================================================
6 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
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
12 http://www.apache.org/licenses/LICENSE-2.0
14 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=========================================================
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
26 <artifactId>ONAP-PDP</artifactId>
27 <description>ONAP-PDP</description>
28 <packaging>jar</packaging>
30 <groupId>org.onap.policy.engine</groupId>
31 <artifactId>PolicyEngineSuite</artifactId>
32 <version>1.3.1-SNAPSHOT</version>
36 <groupId>org.onap.policy.engine</groupId>
37 <version>${project.version}</version>
38 <artifactId>ONAP-REST</artifactId>
41 <groupId>org.apache.httpcomponents</groupId>
42 <artifactId>httpclient</artifactId>
45 <groupId>org.apache.httpcomponents</groupId>
46 <artifactId>httpcore</artifactId>
49 <groupId>commons-codec</groupId>
50 <artifactId>commons-codec</artifactId>
53 <groupId>commons-logging</groupId>
54 <artifactId>commons-logging</artifactId>
55 <version>1.2</version>
58 <groupId>javax.servlet</groupId>
59 <artifactId>servlet-api</artifactId>
64 <groupId>com.google.guava</groupId>
65 <artifactId>guava</artifactId>
68 <groupId>com.att.research.xacml</groupId>
69 <artifactId>xacml-pdp</artifactId>
70 <version>1.0.1</version>
72 <!-- The LDAP PIP uses velocity which pulls this insecure jar in. We
73 are not using that PIP and can safely exclude this jar to resolve CLM issue. -->
75 <groupId>commons-collections</groupId>
76 <artifactId>commons-collections</artifactId>
81 <groupId>org.onap.policy.common</groupId>
82 <artifactId>policy-endpoints</artifactId>
83 <version>${version.policy.common}</version>
90 <artifactId>maven-checkstyle-plugin</artifactId>
93 <id>onap-java-style</id>
97 <phase>process-sources</phase>
99 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
100 with minor changes -->
101 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
102 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated
103 sources directory -->
104 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
105 <includeResources>true</includeResources>
106 <includeTestSourceDirectory>true</includeTestSourceDirectory>
107 <includeTestResources>true</includeTestResources>
110 <consoleOutput>true</consoleOutput>
111 <failOnViolation>true</failOnViolation>
112 <violationSeverity>warning</violationSeverity>
118 <groupId>org.onap.oparent</groupId>
119 <artifactId>checkstyle</artifactId>
120 <version>${oparent.version}</version>
121 <scope>compile</scope>