blob: 45f43dd74da5401013663454f17fb3ccd53a635c [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 ================================================================================
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -06006 Copyright (C) 2017, 2019-2020 AT&T Intellectual Property. All rights reserved.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05007 ================================================================================
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
Jorge Hernandez897ba352019-02-12 07:28:18 -060022<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>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050025
Jorge Hernandez897ba352019-02-12 07:28:18 -060026 <artifactId>policy-utils</artifactId>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050027
Jorge Hernandez897ba352019-02-12 07:28:18 -060028 <parent>
29 <groupId>org.onap.policy.drools-pdp</groupId>
30 <artifactId>drools-pdp</artifactId>
Peyton Puckett06a0e4a2020-03-24 13:55:15 -050031 <version>1.6.1-SNAPSHOT</version>
Jorge Hernandez897ba352019-02-12 07:28:18 -060032 </parent>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050033
Jorge Hernandez897ba352019-02-12 07:28:18 -060034 <dependencies>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040035 <dependency>
36 <groupId>ch.qos.logback</groupId>
37 <artifactId>logback-classic</artifactId>
Jorge Hernandez897ba352019-02-12 07:28:18 -060038 </dependency>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040039 <dependency>
40 <groupId>junit</groupId>
41 <artifactId>junit</artifactId>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
jhhbaa4e922020-01-30 18:57:13 -060045 <groupId>org.assertj</groupId>
46 <artifactId>assertj-core</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040050 <groupId>org.onap.policy.common</groupId>
51 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +010052 <version>${policy.common.version}</version>
Jorge Hernandez897ba352019-02-12 07:28:18 -060053 </dependency>
54 <dependency>
55 <groupId>org.apache.commons</groupId>
56 <artifactId>commons-configuration2</artifactId>
Joseph Choudb12e7c2020-03-25 18:12:12 -040057 <version>2.7</version>
Jorge Hernandez897ba352019-02-12 07:28:18 -060058 </dependency>
jhhbaa4e922020-01-30 18:57:13 -060059 <dependency>
60 <groupId>org.onap.policy.common</groupId>
61 <artifactId>gson</artifactId>
62 <version>${policy.common.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.projectlombok</groupId>
66 <artifactId>lombok</artifactId>
67 <scope>provided</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.onap.policy.models</groupId>
71 <artifactId>policy-models-tosca</artifactId>
72 <version>${policy.models.version}</version>
73 </dependency>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040074 </dependencies>
75 <build>
76 <plugins>
77 <plugin>
78 <artifactId>maven-checkstyle-plugin</artifactId>
79 <executions>
80 <execution>
81 <id>onap-java-style</id>
82 <goals>
83 <goal>check</goal>
84 </goals>
85 <phase>process-sources</phase>
86 <configuration>
87 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
88 with minor changes -->
89 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
90 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -060091 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040092 <includeResources>true</includeResources>
93 <includeTestSourceDirectory>true</includeTestSourceDirectory>
94 <includeTestResources>true</includeTestResources>
95 <excludes>
96 </excludes>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040097 <consoleOutput>true</consoleOutput>
98 <failsOnViolation>true</failsOnViolation>
99 <violationSeverity>warning</violationSeverity>
100 </configuration>
101 </execution>
102 </executions>
103 <dependencies>
104 <dependency>
105 <groupId>org.onap.oparent</groupId>
106 <artifactId>checkstyle</artifactId>
107 <version>${oparent.version}</version>
108 <scope>compile</scope>
109 </dependency>
110 </dependencies>
111 </plugin>
112 </plugins>
113 </build>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500114</project>