blob: 0326534673ee26000687d516fcac84f92e905205 [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Guo Ruijing6abeb292017-07-28 08:23:01 +00004 ONAP Policy Engine - Drools PDP
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05005 ================================================================================
6 Copyright (C) 2017 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
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
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25
26 <artifactId>policy-utils</artifactId>
27
28 <parent>
Guo Ruijing6abeb292017-07-28 08:23:01 +000029 <groupId>org.onap.policy.drools-pdp</groupId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050030 <artifactId>drools-pdp</artifactId>
liamfallonb7067072018-06-05 16:22:44 +010031 <version>1.3.0-SNAPSHOT</version>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050032 </parent>
33
Pamela Dragosha0e0c782018-09-28 04:58:26 -040034 <dependencies>
35 <dependency>
36 <groupId>ch.qos.logback</groupId>
37 <artifactId>logback-classic</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>junit</groupId>
41 <artifactId>junit</artifactId>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>org.onap.policy.common</groupId>
46 <artifactId>utils</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <artifactId>maven-checkstyle-plugin</artifactId>
54 <executions>
55 <execution>
56 <id>onap-java-style</id>
57 <goals>
58 <goal>check</goal>
59 </goals>
60 <phase>process-sources</phase>
61 <configuration>
62 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
63 with minor changes -->
64 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
65 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
66 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
67 <includeResources>true</includeResources>
68 <includeTestSourceDirectory>true</includeTestSourceDirectory>
69 <includeTestResources>true</includeTestResources>
70 <excludes>
71 </excludes>
72 <suppressionsLocation>${project.baseUri}checkstyle-suppressions.xml</suppressionsLocation>
73 <consoleOutput>true</consoleOutput>
74 <failsOnViolation>true</failsOnViolation>
75 <violationSeverity>warning</violationSeverity>
76 </configuration>
77 </execution>
78 </executions>
79 <dependencies>
80 <dependency>
81 <groupId>org.onap.oparent</groupId>
82 <artifactId>checkstyle</artifactId>
83 <version>${oparent.version}</version>
84 <scope>compile</scope>
85 </dependency>
86 </dependencies>
87 </plugin>
88 </plugins>
89 </build>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050090</project>