update references in policy/drools-pdp pom
[policy/drools-pdp.git] / 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-2022 AT&T Intellectual Property. All rights reserved.
7   Modifications Copyright (C) 2020, 2023-2024 Nordix Foundation.
8   ================================================================================
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
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          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     <parent>
28         <groupId>org.onap.policy.parent</groupId>
29         <artifactId>integration</artifactId>
30         <version>4.1.2</version>
31         <relativePath />
32     </parent>
33
34     <groupId>org.onap.policy.drools-pdp</groupId>
35     <artifactId>drools-pdp</artifactId>
36     <version>2.1.2-SNAPSHOT</version>
37     <packaging>pom</packaging>
38     <name>policy-drools-pdp</name>
39
40     <description>The ONAP Policy Engine drools-based PDP Project</description>
41
42     <properties>
43         <!-- Project path properties -->
44         <nexusproxy>https://nexus.onap.org</nexusproxy>
45         <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
46         <releases.path>content/repositories/releases/</releases.path>
47         <snapshots.path>content/repositories/snapshots/</snapshots.path>
48         <staging.path>content/repositories/staging/</staging.path>
49
50         <!-- Project common dependency versions -->
51         <json.path.version>2.9.0</json.path.version>
52         <hibernate.commons.annotations.version>6.0.6.Final</hibernate.commons.annotations.version>
53         <xml.apis.version>1.4.01</xml.apis.version>
54         <policy.common.version>2.1.2</policy.common.version>
55         <policy.models.version>3.1.2</policy.models.version>
56     </properties>
57
58     <modules>
59         <module>policy-utils</module>
60         <module>policy-core</module>
61         <module>policy-domains</module>
62         <module>policy-management</module>
63         <module>feature-healthcheck</module>
64         <module>feature-pooling-messages</module>
65         <module>feature-test-transaction</module>
66         <module>feature-distributed-locking</module>
67         <module>feature-lifecycle</module>
68         <module>feature-no-locking</module>
69         <module>feature-legacy-config</module>
70         <module>packages</module>
71     </modules>
72
73     <dependencies>
74         <dependency>
75             <groupId>org.onap.policy.common</groupId>
76             <artifactId>policy-endpoints</artifactId>
77             <version>${policy.common.version}</version>
78             <scope>provided</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.onap.policy.common</groupId>
82             <artifactId>utils</artifactId>
83             <version>${policy.common.version}</version>
84             <scope>provided</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.slf4j</groupId>
88             <artifactId>slf4j-api</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.onap.policy.common</groupId>
92             <artifactId>utils-test</artifactId>
93             <version>${policy.common.version}</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.junit.jupiter</groupId>
98             <artifactId>junit-jupiter-engine</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.mockito</groupId>
103             <artifactId>mockito-core</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.mockito</groupId>
108             <artifactId>mockito-junit-jupiter</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.assertj</groupId>
112             <artifactId>assertj-core</artifactId>
113             <scope>test</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.awaitility</groupId>
117             <artifactId>awaitility</artifactId>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121
122     <dependencyManagement>
123         <dependencies>
124             <dependency>
125                 <groupId>jakarta.ws.rs</groupId>
126                 <artifactId>jakarta.ws.rs-api</artifactId>
127             </dependency>
128             <dependency>
129                 <groupId>org.glassfish.hk2.external</groupId>
130                 <artifactId>javax.inject</artifactId>
131                 <version>2.5.0-b62</version>
132             </dependency>
133             <dependency>
134                 <groupId>com.jayway.jsonpath</groupId>
135                 <artifactId>json-path</artifactId>
136                 <version>${json.path.version}</version>
137             </dependency>
138             <dependency>
139                 <groupId>org.hibernate.common</groupId>
140                 <artifactId>hibernate-commons-annotations</artifactId>
141                 <version>${hibernate.commons.annotations.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>xml-apis</groupId>
145                 <artifactId>xml-apis</artifactId>
146                 <version>${xml.apis.version}</version>
147             </dependency>
148         </dependencies>
149     </dependencyManagement>
150
151     <build>
152         <plugins>
153             <plugin>
154                 <groupId>org.apache.maven.plugins</groupId>
155                 <artifactId>maven-deploy-plugin</artifactId>
156                 <configuration>
157                     <skip/>
158                 </configuration>
159             </plugin>
160             <plugin>
161                 <groupId>org.apache.maven.plugins</groupId>
162                 <artifactId>maven-compiler-plugin</artifactId>
163                 <configuration>
164                     <release>11</release>
165                 </configuration>
166             </plugin>
167             <plugin>
168                 <groupId>org.apache.maven.plugins</groupId>
169                 <artifactId>maven-resources-plugin</artifactId>
170             </plugin>
171             <plugin>
172                 <groupId>org.apache.maven.plugins</groupId>
173                 <artifactId>maven-site-plugin</artifactId>
174                 <dependencies>
175                     <dependency>
176                         <groupId>org.apache.maven.wagon</groupId>
177                         <artifactId>wagon-webdav-jackrabbit</artifactId>
178                         <version>3.5.3</version>
179                     </dependency>
180                 </dependencies>
181             </plugin>
182             <plugin>
183                 <groupId>org.apache.maven.plugins</groupId>
184                 <artifactId>maven-javadoc-plugin</artifactId>
185             </plugin>
186         </plugins>
187     </build>
188     <reporting>
189         <plugins>
190             <plugin>
191                 <groupId>org.apache.maven.plugins</groupId>
192                 <artifactId>maven-javadoc-plugin</artifactId>
193                 <configuration>
194                     <failOnError>false</failOnError>
195                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
196                     <docletArtifact>
197                         <groupId>org.umlgraph</groupId>
198                         <artifactId>umlgraph</artifactId>
199                         <version>5.6</version>
200                     </docletArtifact>
201                     <useStandardDocletOptions>true</useStandardDocletOptions>
202                 </configuration>
203             </plugin>
204         </plugins>
205     </reporting>
206
207 </project>