Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - XACML PDP |
| 4 | ================================================================================ |
HOCKLA | 82b162b | 2020-01-14 11:39:47 -0600 | [diff] [blame^] | 5 | Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 26 | <artifactId>applications</artifactId> |
Jim Hahn | 88a247e | 2019-09-10 11:14:09 -0400 | [diff] [blame] | 27 | <version>2.2.0-SNAPSHOT</version> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>monitoring</artifactId> |
| 31 | |
| 32 | <name>${project.artifactId}</name> |
| 33 | <description>This modules contains applications that implement policy-types for XACML PDP.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
Pamela Dragosh | b909b14 | 2019-03-09 11:48:44 -0500 | [diff] [blame] | 37 | <groupId>org.onap.policy.xacml-pdp.applications</groupId> |
| 38 | <artifactId>common</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
Ali Hockla | 6f14525 | 2019-10-01 18:42:04 -0500 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>org.onap.policy.xacml-pdp</groupId> |
| 43 | <artifactId>xacml-test</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 47 | </dependencies> |
| 48 | |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 53 | <executions> |
| 54 | <execution> |
| 55 | <id>onap-java-style</id> |
| 56 | <goals> |
| 57 | <goal>check</goal> |
| 58 | </goals> |
| 59 | <phase>process-sources</phase> |
| 60 | <configuration> |
| 61 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 62 | with minor changes --> |
| 63 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 64 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
HOCKLA | 82b162b | 2020-01-14 11:39:47 -0600 | [diff] [blame^] | 65 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
Pamela Dragosh | a026596 | 2019-03-03 19:01:08 -0500 | [diff] [blame] | 66 | <includeResources>true</includeResources> |
| 67 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 68 | <includeTestResources>true</includeTestResources> |
| 69 | <excludes> |
| 70 | </excludes> |
| 71 | <suppressionsLocation>${project.basedir}/checkstyle-suppressions.xml</suppressionsLocation> |
| 72 | <consoleOutput>true</consoleOutput> |
| 73 | <failOnViolation>true</failOnViolation> |
| 74 | <violationSeverity>warning</violationSeverity> |
| 75 | </configuration> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | <dependencies> |
| 79 | <dependency> |
| 80 | <groupId>org.onap.oparent</groupId> |
| 81 | <artifactId>checkstyle</artifactId> |
| 82 | <version>${oparent.version}</version> |
| 83 | <scope>compile</scope> |
| 84 | </dependency> |
| 85 | </dependencies> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | |
| 90 | </project> |