blob: 428074895c6d3c842ea1bd689c6b1eee625e7371 [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.
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
liamfallon99200202018-10-31 16:00:08 +000022<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 -040023 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050024
Pamela Dragoshfd307be2018-08-28 18:10:51 -040025 <artifactId>policy-core</artifactId>
26 <parent>
27 <groupId>org.onap.policy.drools-pdp</groupId>
28 <artifactId>drools-pdp</artifactId>
liamfallon99200202018-10-31 16:00:08 +000029 <version>1.4.0-SNAPSHOT</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040030 </parent>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050031
Pamela Dragoshfd307be2018-08-28 18:10:51 -040032 <dependencies>
Pamela Dragoshe0d71bb2018-02-22 11:58:47 -050033 <!--
34 Issue: 1 of 2
Pamela Dragosh2a6876b2018-09-04 11:18:15 -040035 These 3 dependencies are trying to upgrade security fixes
Pamela Dragoshe0d71bb2018-02-22 11:58:47 -050036 identified. If they are removed or manipulated then please
37 fix the 2nd change as noted below.
38 -->
Pamela Dragoshfd307be2018-08-28 18:10:51 -040039 <dependency>
40 <groupId>org.codehaus.plexus</groupId>
41 <artifactId>plexus-utils</artifactId>
42 <version>3.0.24</version>
43 </dependency>
44 <dependency>
45 <groupId>com.thoughtworks.xstream</groupId>
46 <artifactId>xstream</artifactId>
47 </dependency>
Pamela Dragosh2a6876b2018-09-04 11:18:15 -040048 <dependency>
49 <groupId>com.google.guava</groupId>
50 <artifactId>guava</artifactId>
51 </dependency>
Pamela Dragoshe0d71bb2018-02-22 11:58:47 -050052
Pamela Dragoshfd307be2018-08-28 18:10:51 -040053 <dependency>
54 <groupId>org.kie</groupId>
55 <artifactId>kie-api</artifactId>
Jim Hahn0e6b16b2018-09-11 10:11:29 -040056 <version>6.5.0.Final</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040057 </dependency>
58 <dependency>
59 <groupId>org.kie</groupId>
60 <artifactId>kie-ci</artifactId>
Jim Hahn0e6b16b2018-09-11 10:11:29 -040061 <version>6.5.0.Final</version>
Pamela Dragoshe0d71bb2018-02-22 11:58:47 -050062 <!--
63 Issue: 2 of 2
64 Excluding these 2 dependencies in order to force upgrade security fixes
65 identified. As declared above. Any changes here should be reflected above
66 and vice versa.
67 -->
Pamela Dragoshfd307be2018-08-28 18:10:51 -040068 <exclusions>
69 <exclusion>
70 <groupId>org.codehaus.plexus</groupId>
71 <artifactId>plexus-utils</artifactId>
72 </exclusion>
73 <exclusion>
74 <groupId>com.thoughtworks.xstream</groupId>
75 <artifactId>xstream</artifactId>
76 </exclusion>
Pamela Dragosh2a6876b2018-09-04 11:18:15 -040077 <exclusion>
78 <groupId>com.google.guava</groupId>
79 <artifactId>guava</artifactId>
80 </exclusion>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040081 </exclusions>
82 </dependency>
83 <dependency>
84 <groupId>org.drools</groupId>
85 <artifactId>drools-core</artifactId>
Jim Hahn0e6b16b2018-09-11 10:11:29 -040086 <version>6.5.0.Final</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040087 </dependency>
88 <dependency>
89 <groupId>org.drools</groupId>
90 <artifactId>drools-persistence-jpa</artifactId>
Jim Hahn0e6b16b2018-09-11 10:11:29 -040091 <version>6.5.0.Final</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040092 </dependency>
93 <dependency>
94 <groupId>org.onap.policy.common</groupId>
95 <artifactId>capabilities</artifactId>
ramverma5bf84862018-10-24 19:35:48 +010096 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -040097 </dependency>
98 <dependency>
99 <groupId>org.onap.policy.common</groupId>
100 <artifactId>utils</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100101 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400102 </dependency>
103 <dependency>
104 <groupId>org.onap.policy.drools-pdp</groupId>
105 <artifactId>policy-utils</artifactId>
106 <version>${project.version}</version>
107 </dependency>
108 <dependency>
109 <groupId>junit</groupId>
110 <artifactId>junit</artifactId>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.powermock</groupId>
115 <artifactId>powermock-api-mockito</artifactId>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400116 <scope>test</scope>
117 </dependency>
118 <dependency>
Jim Hahn7e4d3092019-01-08 17:48:31 -0500119 <groupId>org.assertj</groupId>
120 <artifactId>assertj-core</artifactId>
121 <version>3.11.1</version>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400125 <groupId>org.onap.policy.common</groupId>
126 <artifactId>utils-test</artifactId>
ramverma5bf84862018-10-24 19:35:48 +0100127 <version>${policy.common.version}</version>
Pamela Dragoshfd307be2018-08-28 18:10:51 -0400128 <scope>test</scope>
129 </dependency>
130 </dependencies>
Pamela Dragosha0e0c782018-09-28 04:58:26 -0400131 <build>
132 <plugins>
133 <plugin>
134 <artifactId>maven-checkstyle-plugin</artifactId>
135 <executions>
136 <execution>
137 <id>onap-java-style</id>
138 <goals>
139 <goal>check</goal>
140 </goals>
141 <phase>process-sources</phase>
142 <configuration>
143 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
144 with minor changes -->
145 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
146 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
147 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
148 <includeResources>true</includeResources>
149 <includeTestSourceDirectory>true</includeTestSourceDirectory>
150 <includeTestResources>true</includeTestResources>
151 <excludes>
152 </excludes>
153 <suppressionsLocation>${project.baseUri}checkstyle-suppressions.xml</suppressionsLocation>
154 <consoleOutput>true</consoleOutput>
155 <failsOnViolation>true</failsOnViolation>
156 <violationSeverity>warning</violationSeverity>
157 </configuration>
158 </execution>
159 </executions>
160 <dependencies>
161 <dependency>
162 <groupId>org.onap.oparent</groupId>
163 <artifactId>checkstyle</artifactId>
164 <version>${oparent.version}</version>
165 <scope>compile</scope>
166 </dependency>
167 </dependencies>
168 </plugin>
169 </plugins>
170 </build>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -0500171</project>