Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP Policy Engine |
| 5 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 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 |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 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========================================================= |
| 20 | --> |
| 21 | |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 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> |
| 29 | <parent> |
| 30 | <groupId>org.onap.policy.engine</groupId> |
| 31 | <artifactId>PolicyEngineSuite</artifactId> |
ramverma | d7630c4 | 2018-10-25 17:19:16 +0100 | [diff] [blame^] | 32 | <version>1.3.1-SNAPSHOT</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 33 | </parent> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.policy.engine</groupId> |
| 37 | <version>${project.version}</version> |
| 38 | <artifactId>ONAP-REST</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.httpcomponents</groupId> |
| 42 | <artifactId>httpclient</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.httpcomponents</groupId> |
| 46 | <artifactId>httpcore</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>commons-codec</groupId> |
| 50 | <artifactId>commons-codec</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>commons-logging</groupId> |
| 54 | <artifactId>commons-logging</artifactId> |
| 55 | <version>1.2</version> |
| 56 | <exclusions> |
| 57 | <exclusion> |
| 58 | <groupId>javax.servlet</groupId> |
| 59 | <artifactId>servlet-api</artifactId> |
| 60 | </exclusion> |
| 61 | </exclusions> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>com.google.guava</groupId> |
| 65 | <artifactId>guava</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>com.att.research.xacml</groupId> |
| 69 | <artifactId>xacml-pdp</artifactId> |
| 70 | <version>1.0.1</version> |
| 71 | <exclusions> |
| 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. --> |
| 74 | <exclusion> |
| 75 | <groupId>commons-collections</groupId> |
| 76 | <artifactId>commons-collections</artifactId> |
| 77 | </exclusion> |
| 78 | </exclusions> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.onap.policy.common</groupId> |
| 82 | <artifactId>policy-endpoints</artifactId> |
ramverma | d7630c4 | 2018-10-25 17:19:16 +0100 | [diff] [blame^] | 83 | <version>${version.policy.common}</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | </dependencies> |
| 87 | <build> |
| 88 | <plugins> |
| 89 | <plugin> |
| 90 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 91 | <executions> |
| 92 | <execution> |
| 93 | <id>onap-java-style</id> |
| 94 | <goals> |
| 95 | <goal>check</goal> |
| 96 | </goals> |
| 97 | <phase>process-sources</phase> |
| 98 | <configuration> |
| 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> |
| 108 | <excludes> |
| 109 | </excludes> |
| 110 | <consoleOutput>true</consoleOutput> |
| 111 | <failOnViolation>true</failOnViolation> |
| 112 | <violationSeverity>warning</violationSeverity> |
| 113 | </configuration> |
| 114 | </execution> |
| 115 | </executions> |
| 116 | <dependencies> |
| 117 | <dependency> |
| 118 | <groupId>org.onap.oparent</groupId> |
| 119 | <artifactId>checkstyle</artifactId> |
| 120 | <version>${oparent.version}</version> |
| 121 | <scope>compile</scope> |
| 122 | </dependency> |
| 123 | </dependencies> |
| 124 | </plugin> |
| 125 | </plugins> |
| 126 | </build> |
liamfallon | 1da8855 | 2018-05-16 13:59:46 +0100 | [diff] [blame] | 127 | </project> |