blob: 25b099c08894277d10e2a3c9c9fba358704b123d [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 ================================================================================
Jim Hahn7e4d3092019-01-08 17:48:31 -05006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Bruno Sakotoe9b60c32019-10-10 10:02:21 -04007 Modifications Copyright (C) 2019 Bell Canada.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05008 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 -->
22
liamfallon99200202018-10-31 16:00:08 +000023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pamela Dragoshfd307be2018-08-28 18:10:51 -040024 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050025
Pamela Dragoshfd307be2018-08-28 18:10:51 -040026 <artifactId>policy-core</artifactId>
27 <parent>
28 <groupId>org.onap.policy.drools-pdp</groupId>
29 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040030 <version>1.6.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040031 </parent>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050032
Pamela Dragoshfd307be2018-08-28 18:10:51 -040033 <dependencies>
jhhf7222f82019-10-31 11:36:17 -050034
Pamela Dragoshfd307be2018-08-28 18:10:51 -040035 <dependency>
36 <groupId>org.codehaus.plexus</groupId>
37 <artifactId>plexus-utils</artifactId>
Bruno Sakotoe9b60c32019-10-10 10:02:21 -040038 </dependency>
39
40 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040041 <groupId>org.kie</groupId>
42 <artifactId>kie-api</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040043 </dependency>
jhhf7222f82019-10-31 11:36:17 -050044
Pamela Dragoshfd307be2018-08-28 18:10:51 -040045 <dependency>
46 <groupId>org.kie</groupId>
47 <artifactId>kie-ci</artifactId>
jhhf7222f82019-10-31 11:36:17 -050048 <!--
49 Issue: 2 of 2
50 Excluding these 2 dependencies in order to force upgrade security fixes
51 identified. As declared above. Any changes here should be reflected above
52 and vice versa.
53 -->
Pamela Dragoshfd307be2018-08-28 18:10:51 -040054 <exclusions>
55 <exclusion>
56 <groupId>org.codehaus.plexus</groupId>
57 <artifactId>plexus-utils</artifactId>
58 </exclusion>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040059 </exclusions>
60 </dependency>
jhhf7222f82019-10-31 11:36:17 -050061
Pamela Dragoshfd307be2018-08-28 18:10:51 -040062 <dependency>
63 <groupId>org.drools</groupId>
64 <artifactId>drools-core</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040065 </dependency>
jhhf7222f82019-10-31 11:36:17 -050066
Pamela Dragoshfd307be2018-08-28 18:10:51 -040067 <dependency>
68 <groupId>org.drools</groupId>
69 <artifactId>drools-persistence-jpa</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040070 </dependency>
jhhf7222f82019-10-31 11:36:17 -050071
Pamela Dragoshfd307be2018-08-28 18:10:51 -040072 <dependency>
73 <groupId>org.onap.policy.common</groupId>
74 <artifactId>capabilities</artifactId>
ramverma5bf84862018-10-24 19:35:48 +010075 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040076 </dependency>
jhhf7222f82019-10-31 11:36:17 -050077
Pamela Dragoshfd307be2018-08-28 18:10:51 -040078 <dependency>
79 <groupId>org.onap.policy.common</groupId>
80 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +010081 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040082 </dependency>
jhhf7222f82019-10-31 11:36:17 -050083
Pamela Dragoshfd307be2018-08-28 18:10:51 -040084 <dependency>
85 <groupId>org.onap.policy.drools-pdp</groupId>
86 <artifactId>policy-utils</artifactId>
87 <version>${project.version}</version>
88 </dependency>
jhhf7222f82019-10-31 11:36:17 -050089
Pamela Dragoshfd307be2018-08-28 18:10:51 -040090 <dependency>
Jim Hahna156cf32019-08-05 15:27:16 -040091 <groupId>org.projectlombok</groupId>
92 <artifactId>lombok</artifactId>
93 <scope>provided</scope>
94 </dependency>
jhhf7222f82019-10-31 11:36:17 -050095
Jim Hahna156cf32019-08-05 15:27:16 -040096 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040097 <groupId>junit</groupId>
98 <artifactId>junit</artifactId>
99 <scope>test</scope>
100 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500101
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400102 <dependency>
103 <groupId>org.powermock</groupId>
104 <artifactId>powermock-api-mockito</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400105 <scope>test</scope>
106 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500107
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400108 <dependency>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500109 <groupId>org.assertj</groupId>
110 <artifactId>assertj-core</artifactId>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500111 <scope>test</scope>
112 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500113
Jim Hahn7e4d3092019-01-08 17:48:31 -0500114 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400115 <groupId>org.onap.policy.common</groupId>
116 <artifactId>utils-test</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100117 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400118 <scope>test</scope>
119 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500120
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400121 </dependencies>
jhhf7222f82019-10-31 11:36:17 -0500122
Pamela Dragosha0e0c782018-09-28 04:58:26 -0400123 <build>
124 <plugins>
125 <plugin>
126 <artifactId>maven-checkstyle-plugin</artifactId>
127 <executions>
128 <execution>
129 <id>onap-java-style</id>
130 <goals>
131 <goal>check</goal>
132 </goals>
133 <phase>process-sources</phase>
134 <configuration>
135 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
136 with minor changes -->
137 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
138 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
139 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
140 <includeResources>true</includeResources>
141 <includeTestSourceDirectory>true</includeTestSourceDirectory>
142 <includeTestResources>true</includeTestResources>
143 <excludes>
144 </excludes>
Pamela Dragosha0e0c782018-09-28 04:58:26 -0400145 <consoleOutput>true</consoleOutput>
146 <failsOnViolation>true</failsOnViolation>
147 <violationSeverity>warning</violationSeverity>
148 </configuration>
149 </execution>
150 </executions>
151 <dependencies>
152 <dependency>
153 <groupId>org.onap.oparent</groupId>
154 <artifactId>checkstyle</artifactId>
155 <version>${oparent.version}</version>
156 <scope>compile</scope>
157 </dependency>
158 </dependencies>
159 </plugin>
160 </plugins>
161 </build>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500162</project>