Release policy/drools-pdp
[policy/drools-pdp.git] / policy-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP
5   ================================================================================
6   Copyright (C) 2017-2021, 2023 AT&T Intellectual Property. All rights reserved.
7   Modifications Copyright (C) 2019 Bell Canada.
8   Modifications Copyright (C) 2020,2022-2023 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"
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27
28     <artifactId>policy-core</artifactId>
29     <parent>
30         <groupId>org.onap.policy.drools-pdp</groupId>
31         <artifactId>drools-pdp</artifactId>
32         <version>2.0.1</version>
33     </parent>
34
35     <dependencies>
36
37         <dependency>
38             <groupId>org.codehaus.plexus</groupId>
39             <artifactId>plexus-utils</artifactId>
40         </dependency>
41
42         <dependency>
43             <groupId>org.kie</groupId>
44             <artifactId>kie-api</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.apache.ant</groupId>
49             <artifactId>ant</artifactId>
50             <version>1.10.13</version>
51         </dependency>
52
53         <dependency>
54             <groupId>org.kie</groupId>
55             <artifactId>kie-ci</artifactId>
56             <!--
57             Issue: 2 of 2
58             Excluding these 2 dependencies in order to force upgrade security fixes
59             identified. As declared above. Any changes here should be reflected above
60             and vice versa.
61             -->
62             <exclusions>
63                 <exclusion>
64                     <groupId>org.codehaus.plexus</groupId>
65                     <artifactId>plexus-utils</artifactId>
66                 </exclusion>
67                 <exclusion>
68                     <groupId>org.apache.ant</groupId>
69                     <artifactId>ant</artifactId>
70                 </exclusion>
71             </exclusions>
72         </dependency>
73
74         <dependency>
75             <groupId>org.drools</groupId>
76             <artifactId>drools-engine</artifactId>
77         </dependency>
78
79         <dependency>
80             <groupId>org.drools</groupId>
81             <artifactId>drools-core</artifactId>
82         </dependency>
83
84         <dependency>
85             <groupId>org.drools</groupId>
86             <artifactId>drools-xml-support</artifactId>
87         </dependency>
88
89         <dependency>
90             <groupId>org.drools</groupId>
91             <artifactId>drools-persistence-jpa</artifactId>
92         </dependency>
93
94         <dependency>
95             <groupId>org.onap.policy.common</groupId>
96             <artifactId>capabilities</artifactId>
97             <version>${policy.common.version}</version>
98         </dependency>
99
100         <dependency>
101             <groupId>org.onap.policy.common</groupId>
102             <artifactId>utils</artifactId>
103             <version>${policy.common.version}</version>
104         </dependency>
105
106         <dependency>
107             <groupId>org.onap.policy.drools-pdp</groupId>
108             <artifactId>policy-utils</artifactId>
109             <version>${project.version}</version>
110         </dependency>
111
112         <dependency>
113             <groupId>org.projectlombok</groupId>
114             <artifactId>lombok</artifactId>
115             <scope>provided</scope>
116         </dependency>
117
118         <!-- Provided dependencies -->
119         <dependency>
120             <groupId>com.sun.xml.bind</groupId>
121             <artifactId>jaxb-xjc</artifactId>
122             <version>4.0.3</version>
123         </dependency>
124         <dependency>
125             <groupId>com.sun.xml.bind</groupId>
126             <artifactId>jaxb-core</artifactId>
127             <version>4.0.3</version>
128         </dependency>
129         <dependency>
130             <groupId>com.sun.xml.bind</groupId>
131             <artifactId>jaxb-impl</artifactId>
132             <version>4.0.3</version>
133         </dependency>
134         <dependency>
135             <groupId>jakarta.activation</groupId>
136             <artifactId>jakarta.activation-api</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>jakarta.inject</groupId>
140             <artifactId>jakarta.inject-api</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>jakarta.xml.bind</groupId>
144             <artifactId>jakarta.xml.bind-api</artifactId>
145         </dependency>
146     </dependencies>
147
148 </project>