blob: 32cfb89b8a7383b7323d2804368905f8c7adf70c [file] [log] [blame]
Pamela Dragosha0265962019-03-03 19:01:08 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - XACML PDP
4 ================================================================================
HOCKLA82b162b2020-01-14 11:39:47 -06005 Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
Pamela Dragosha0265962019-03-03 19:01:08 -05006 ================================================================================
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>
Pamela Dragoshc5f3b562020-10-07 16:36:52 -040027 <version>2.3.3-SNAPSHOT</version>
Pamela Dragosha0265962019-03-03 19:01:08 -050028 </parent>
29
Jim Hahn97be46a2020-09-29 11:16:14 -040030 <artifactId>xacml-monitoring</artifactId>
Pamela Dragosha0265962019-03-03 19:01:08 -050031
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 Dragoshb909b142019-03-09 11:48:44 -050037 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
38 <artifactId>common</artifactId>
39 <version>${project.version}</version>
40 </dependency>
Ali Hockla6f145252019-10-01 18:42:04 -050041 <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 Dragosha0265962019-03-03 19:01:08 -050047 </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 -->
HOCKLA82b162b2020-01-14 11:39:47 -060065 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragosha0265962019-03-03 19:01:08 -050066 <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>