Bump drools-pdp to 1.7.1-SNAPSHOT
[policy/drools-pdp.git] / policy-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine - Drools PDP
5   ================================================================================
6   Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
7   Modifications Copyright (C) 2019 Bell Canada.
8   Modifications Copyright (C) 2020 Nordix Foundation.
9   ================================================================================
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
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   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
24 <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">
25     <modelVersion>4.0.0</modelVersion>
26
27     <artifactId>policy-core</artifactId>
28     <parent>
29         <groupId>org.onap.policy.drools-pdp</groupId>
30         <artifactId>drools-pdp</artifactId>
31         <version>1.7.1-SNAPSHOT</version>
32     </parent>
33
34     <dependencies>
35
36         <dependency>
37             <groupId>org.codehaus.plexus</groupId>
38             <artifactId>plexus-utils</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>org.kie</groupId>
43             <artifactId>kie-api</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>org.apache.ant</groupId>
48             <artifactId>ant</artifactId>
49             <version>1.10.8</version>
50         </dependency>
51
52         <dependency>
53             <groupId>org.kie</groupId>
54             <artifactId>kie-ci</artifactId>
55             <!--
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             -->
61             <exclusions>
62                 <exclusion>
63                     <groupId>org.codehaus.plexus</groupId>
64                     <artifactId>plexus-utils</artifactId>
65                 </exclusion>
66                 <exclusion>
67                     <groupId>org.apache.ant</groupId>
68                     <artifactId>ant</artifactId>
69                 </exclusion>
70             </exclusions>
71         </dependency>
72
73         <dependency>
74             <groupId>org.drools</groupId>
75             <artifactId>drools-core</artifactId>
76         </dependency>
77
78         <dependency>
79             <groupId>org.drools</groupId>
80             <artifactId>drools-persistence-jpa</artifactId>
81         </dependency>
82
83         <dependency>
84             <groupId>org.onap.policy.common</groupId>
85             <artifactId>capabilities</artifactId>
86             <version>${policy.common.version}</version>
87         </dependency>
88
89         <dependency>
90             <groupId>org.onap.policy.common</groupId>
91             <artifactId>utils</artifactId>
92             <version>${policy.common.version}</version>
93         </dependency>
94
95         <dependency>
96             <groupId>org.onap.policy.drools-pdp</groupId>
97             <artifactId>policy-utils</artifactId>
98             <version>${project.version}</version>
99         </dependency>
100
101         <dependency>
102             <groupId>org.projectlombok</groupId>
103             <artifactId>lombok</artifactId>
104             <scope>provided</scope>
105         </dependency>
106
107         <dependency>
108             <groupId>junit</groupId>
109             <artifactId>junit</artifactId>
110             <scope>test</scope>
111         </dependency>
112
113         <dependency>
114             <groupId>org.powermock</groupId>
115             <artifactId>powermock-api-mockito2</artifactId>
116             <scope>test</scope>
117         </dependency>
118
119         <dependency>
120             <groupId>org.assertj</groupId>
121             <artifactId>assertj-core</artifactId>
122             <scope>test</scope>
123         </dependency>
124
125         <dependency>
126             <groupId>org.onap.policy.common</groupId>
127             <artifactId>utils-test</artifactId>
128             <version>${policy.common.version}</version>
129             <scope>test</scope>
130         </dependency>
131
132     </dependencies>
133
134     <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 -->
150                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
151                             <includeResources>true</includeResources>
152                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
153                             <includeTestResources>true</includeTestResources>
154                             <excludes>
155                             </excludes>
156                             <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>
173 </project>