blob: 2993eebb104ac0496d97f204fd75b603d9250823 [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-2020 AT&T Intellectual Property. All rights reserved.
Bruno Sakotoe9b60c32019-10-10 10:02:21 -04007 Modifications Copyright (C) 2019 Bell Canada.
RossCc50265a2020-06-30 15:57:07 +01008 Modifications Copyright (C) 2020 Nordix Foundation.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05009 ================================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
RossCc50265a2020-06-30 15:57:07 +010013
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050014 http://www.apache.org/licenses/LICENSE-2.0
RossCc50265a2020-06-30 15:57:07 +010015
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050016 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21 ============LICENSE_END=========================================================
22 -->
23
liamfallon99200202018-10-31 16:00:08 +000024<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 -040025 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050026
Pamela Dragoshfd307be2018-08-28 18:10:51 -040027 <artifactId>policy-core</artifactId>
28 <parent>
29 <groupId>org.onap.policy.drools-pdp</groupId>
30 <artifactId>drools-pdp</artifactId>
Taka Cho633fbb72020-07-10 15:09:52 -040031 <version>1.7.1-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040032 </parent>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050033
Pamela Dragoshfd307be2018-08-28 18:10:51 -040034 <dependencies>
jhhf7222f82019-10-31 11:36:17 -050035
Pamela Dragoshfd307be2018-08-28 18:10:51 -040036 <dependency>
37 <groupId>org.codehaus.plexus</groupId>
38 <artifactId>plexus-utils</artifactId>
Bruno Sakotoe9b60c32019-10-10 10:02:21 -040039 </dependency>
40
41 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040042 <groupId>org.kie</groupId>
43 <artifactId>kie-api</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040044 </dependency>
jhhf7222f82019-10-31 11:36:17 -050045
Pamela Dragoshfd307be2018-08-28 18:10:51 -040046 <dependency>
Joseph Choudb12e7c2020-03-25 18:12:12 -040047 <groupId>org.apache.ant</groupId>
48 <artifactId>ant</artifactId>
RossCc50265a2020-06-30 15:57:07 +010049 <version>1.10.8</version>
Joseph Choudb12e7c2020-03-25 18:12:12 -040050 </dependency>
51
52 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040053 <groupId>org.kie</groupId>
54 <artifactId>kie-ci</artifactId>
jhhf7222f82019-10-31 11:36:17 -050055 <!--
56 Issue: 2 of 2
57 Excluding these 2 dependencies in order to force upgrade security fixes
58 identified. As declared above. Any changes here should be reflected above
59 and vice versa.
60 -->
Pamela Dragoshfd307be2018-08-28 18:10:51 -040061 <exclusions>
62 <exclusion>
63 <groupId>org.codehaus.plexus</groupId>
64 <artifactId>plexus-utils</artifactId>
65 </exclusion>
Joseph Choudb12e7c2020-03-25 18:12:12 -040066 <exclusion>
67 <groupId>org.apache.ant</groupId>
68 <artifactId>ant</artifactId>
69 </exclusion>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040070 </exclusions>
71 </dependency>
jhhf7222f82019-10-31 11:36:17 -050072
Pamela Dragoshfd307be2018-08-28 18:10:51 -040073 <dependency>
74 <groupId>org.drools</groupId>
75 <artifactId>drools-core</artifactId>
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.drools</groupId>
80 <artifactId>drools-persistence-jpa</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040081 </dependency>
jhhf7222f82019-10-31 11:36:17 -050082
Pamela Dragoshfd307be2018-08-28 18:10:51 -040083 <dependency>
84 <groupId>org.onap.policy.common</groupId>
85 <artifactId>capabilities</artifactId>
ramverma5bf84862018-10-24 19:35:48 +010086 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040087 </dependency>
jhhf7222f82019-10-31 11:36:17 -050088
Pamela Dragoshfd307be2018-08-28 18:10:51 -040089 <dependency>
90 <groupId>org.onap.policy.common</groupId>
91 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +010092 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040093 </dependency>
jhhf7222f82019-10-31 11:36:17 -050094
Pamela Dragoshfd307be2018-08-28 18:10:51 -040095 <dependency>
96 <groupId>org.onap.policy.drools-pdp</groupId>
97 <artifactId>policy-utils</artifactId>
98 <version>${project.version}</version>
99 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500100
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400101 <dependency>
Jim Hahna156cf32019-08-05 15:27:16 -0400102 <groupId>org.projectlombok</groupId>
103 <artifactId>lombok</artifactId>
104 <scope>provided</scope>
105 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500106
Jim Hahna156cf32019-08-05 15:27:16 -0400107 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400108 <groupId>junit</groupId>
109 <artifactId>junit</artifactId>
110 <scope>test</scope>
111 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500112
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400113 <dependency>
114 <groupId>org.powermock</groupId>
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -0600115 <artifactId>powermock-api-mockito2</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400116 <scope>test</scope>
117 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500118
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400119 <dependency>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500120 <groupId>org.assertj</groupId>
121 <artifactId>assertj-core</artifactId>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500122 <scope>test</scope>
123 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500124
Jim Hahn7e4d3092019-01-08 17:48:31 -0500125 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400126 <groupId>org.onap.policy.common</groupId>
127 <artifactId>utils-test</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100128 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400129 <scope>test</scope>
130 </dependency>
jhhf7222f82019-10-31 11:36:17 -0500131
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400132 </dependencies>
jhhf7222f82019-10-31 11:36:17 -0500133
Pamela Dragosha0e0c782018-09-28 04:58:26 -0400134 <build>
135 <plugins>
136 <plugin>
137 <artifactId>maven-checkstyle-plugin</artifactId>
138 <executions>
139 <execution>
140 <id>onap-java-style</id>
141 <goals>
142 <goal>check</goal>
143 </goals>
144 <phase>process-sources</phase>
145 <configuration>
146 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
147 with minor changes -->
148 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
149 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -0600150 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragosha0e0c782018-09-28 04:58:26 -0400151 <includeResources>true</includeResources>
152 <includeTestSourceDirectory>true</includeTestSourceDirectory>
153 <includeTestResources>true</includeTestResources>
154 <excludes>
155 </excludes>
Pamela Dragosha0e0c782018-09-28 04:58:26 -0400156 <consoleOutput>true</consoleOutput>
157 <failsOnViolation>true</failsOnViolation>
158 <violationSeverity>warning</violationSeverity>
159 </configuration>
160 </execution>
161 </executions>
162 <dependencies>
163 <dependency>
164 <groupId>org.onap.oparent</groupId>
165 <artifactId>checkstyle</artifactId>
166 <version>${oparent.version}</version>
167 <scope>compile</scope>
168 </dependency>
169 </dependencies>
170 </plugin>
171 </plugins>
172 </build>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500173</project>