Update to Apex jmx files
[policy/apex-pdp.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2019-2020, 2022-2024 Nordix Foundation.
5    Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
6    Modifications Copyright (C) 2020-2021 Bell Canada.
7   ================================================================================
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
20   SPDX-License-Identifier: Apache-2.0
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/xsd/maven-4.0.0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27     <parent>
28         <groupId>org.onap.policy.parent</groupId>
29         <artifactId>integration</artifactId>
30         <version>4.1.3-SNAPSHOT</version>
31         <relativePath />
32     </parent>
33
34     <groupId>org.onap.policy.apex-pdp</groupId>
35     <artifactId>apex-pdp</artifactId>
36     <version>3.1.3-SNAPSHOT</version>
37     <packaging>pom</packaging>
38
39     <name>policy-apex-pdp</name>
40     <description>Packaging for all the Apex components, the engine, the WAR service, and the editor.</description>
41
42     <properties>
43         <encoding>UTF-8</encoding>
44         <file.encoding>UTF-8</file.encoding>
45         <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info
46         </sonar.javascript.lcov.reportPaths>
47
48         <!-- Policy framework dependencies -->
49         <version.policy.common>2.1.3-SNAPSHOT</version.policy.common>
50         <version.policy.models>3.1.3-SNAPSHOT</version.policy.models>
51
52         <!-- Apex-specific dependencies -->
53         <version.activemq>5.18.3</version.activemq>
54         <version.antlr.st4>4.3.4</version.antlr.st4>
55         <version.antlr-runtime>4.13.1</version.antlr-runtime>
56         <version.artemis>2.30.0</version.artemis>
57         <version.avro>1.11.3</version.avro>
58         <version.caffeine>3.1.8</version.caffeine>
59         <version.curator>5.5.0</version.curator>
60         <version.hazelcast>5.3.1</version.hazelcast>
61         <version.infinispan>14.0.13.Final</version.infinispan>
62         <version.jgroups>5.2.18.Final</version.jgroups>
63         <version.jms>3.1.0</version.jms>
64         <version.jnr.jffi>1.3.12</version.jnr.jffi>
65         <version.jnr.jnr-posix>3.1.19</version.jnr.jnr-posix>
66         <version.jruby-core>9.4.6.0</version.jruby-core>
67         <version.jruby-joni>2.2.1</version.jruby-joni>
68         <version.jruby-extras-bytelist>1.0.15</version.jruby-extras-bytelist>
69         <version.jython-standalone>2.7.3</version.jython-standalone>
70         <version.kafka-avro-serializer>7.5.1</version.kafka-avro-serializer>
71         <version.kafka-junit4>3.2.5</version.kafka-junit4>
72         <version.rhino>1.7.14</version.rhino>
73         <version.websocket.jakarta>2.1.1</version.websocket.jakarta>
74         <version.zookeeper>3.9.1</version.zookeeper>
75     </properties>
76
77     <distributionManagement>
78         <site>
79             <id>ecomp-site</id>
80             <url>dav:${onap.nexus.url}${sitePath}</url>
81         </site>
82     </distributionManagement>
83
84     <dependencies>
85         <dependency>
86             <groupId>junit</groupId>
87             <artifactId>junit</artifactId>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.springframework</groupId>
92             <artifactId>spring-test</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.mockito</groupId>
96             <artifactId>mockito-core</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.mockito</groupId>
101             <artifactId>mockito-junit-jupiter</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.assertj</groupId>
106             <artifactId>assertj-core</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.awaitility</groupId>
111             <artifactId>awaitility</artifactId>
112             <scope>test</scope>
113         </dependency>
114         <dependency>
115             <groupId>org.slf4j</groupId>
116             <artifactId>slf4j-ext</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.slf4j</groupId>
120             <artifactId>slf4j-api</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>ch.qos.logback</groupId>
124             <artifactId>logback-core</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>ch.qos.logback</groupId>
128             <artifactId>logback-classic</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.projectlombok</groupId>
132             <artifactId>lombok</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>jakarta.xml.bind</groupId>
136             <artifactId>jakarta.xml.bind-api</artifactId>
137         </dependency>
138         <dependency>
139             <groupId>jakarta.activation</groupId>
140             <artifactId>jakarta.activation-api</artifactId>
141         </dependency>
142         <dependency>
143             <groupId>org.glassfish.jaxb</groupId>
144             <artifactId>jaxb-core</artifactId>
145         </dependency>
146         <dependency>
147             <groupId>org.glassfish.jaxb</groupId>
148             <artifactId>jaxb-runtime</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>com.sun.xml.bind</groupId>
152             <artifactId>jaxb-impl</artifactId>
153         </dependency>
154     </dependencies>
155
156     <dependencyManagement>
157         <dependencies>
158             <dependency>
159                 <groupId>org.onap.policy.common</groupId>
160                 <artifactId>utils</artifactId>
161                 <version>${version.policy.common}</version>
162             </dependency>
163             <dependency>
164                 <groupId>org.onap.policy.common</groupId>
165                 <artifactId>common-parameters</artifactId>
166                 <version>${version.policy.common}</version>
167             </dependency>
168             <dependency>
169                 <groupId>org.onap.policy.common</groupId>
170                 <artifactId>policy-endpoints</artifactId>
171                 <version>${version.policy.common}</version>
172             </dependency>
173             <dependency>
174                 <groupId>org.jgroups</groupId>
175                 <artifactId>jgroups</artifactId>
176                 <version>${version.jgroups}</version>
177             </dependency>
178             <dependency>
179                 <groupId>com.github.ben-manes.caffeine</groupId>
180                 <artifactId>caffeine</artifactId>
181                 <version>${version.caffeine}</version>
182             </dependency>
183         </dependencies>
184     </dependencyManagement>
185
186     <profiles>
187         <profile>
188             <!--This profile is used to store Eclipse m2e settings only. It has no
189                 influence on the Maven build itself. -->
190             <id>only-eclipse</id>
191             <activation>
192                 <property>
193                     <name>m2e.version</name>
194                 </property>
195             </activation>
196             <build>
197                 <pluginManagement>
198                     <plugins>
199                         <plugin>
200                             <groupId>org.eclipse.m2e</groupId>
201                             <artifactId>lifecycle-mapping</artifactId>
202                             <version>1.0.0</version>
203                             <configuration>
204                                 <lifecycleMappingMetadata>
205                                     <pluginExecutions>
206                                         <pluginExecution>
207                                             <pluginExecutionFilter>
208                                                 <groupId>org.codehaus.mojo</groupId>
209                                                 <artifactId>exec-maven-plugin</artifactId>
210                                                 <versionRange>[1.6.0,)</versionRange>
211                                                 <goals>
212                                                     <goal>java</goal>
213                                                     <goal>exec</goal>
214                                                 </goals>
215                                             </pluginExecutionFilter>
216                                             <action>
217                                                 <execute/>
218                                             </action>
219                                         </pluginExecution>
220                                         <pluginExecution>
221                                             <pluginExecutionFilter>
222                                                 <groupId>org.commonjava.maven.plugins</groupId>
223                                                 <artifactId>directory-maven-plugin</artifactId>
224                                                 <versionRange>0.2</versionRange>
225                                                 <goals>
226                                                     <goal>directory-of</goal>
227                                                 </goals>
228                                             </pluginExecutionFilter>
229                                             <action>
230                                                 <execute/>
231                                             </action>
232                                         </pluginExecution>
233                                         <pluginExecution>
234                                             <pluginExecutionFilter>
235                                                 <groupId>org.apache.maven.plugins</groupId>
236                                                 <artifactId>maven-dependency-plugin</artifactId>
237                                                 <versionRange>[2.0,)</versionRange>
238                                                 <goals>
239                                                     <goal>unpack</goal>
240                                                     <goal>unpack-dependencies</goal>
241                                                 </goals>
242                                             </pluginExecutionFilter>
243                                             <action>
244                                                 <execute/>
245                                             </action>
246                                         </pluginExecution>
247                                         <pluginExecution>
248                                             <pluginExecutionFilter>
249                                                 <groupId>org.apache.maven.plugins</groupId>
250                                                 <artifactId>maven-antrun-plugin</artifactId>
251                                                 <versionRange>[1.0,)</versionRange>
252                                                 <goals>
253                                                     <goal>run</goal>
254                                                 </goals>
255                                             </pluginExecutionFilter>
256                                             <action>
257                                                 <ignore/>
258                                             </action>
259                                         </pluginExecution>
260                                     </pluginExecutions>
261                                 </lifecycleMappingMetadata>
262                             </configuration>
263                         </plugin>
264                     </plugins>
265                 </pluginManagement>
266             </build>
267         </profile>
268     </profiles>
269
270     <modules>
271         <module>model</module>
272         <module>context</module>
273         <module>core</module>
274         <module>auth</module>
275         <module>services</module>
276         <module>plugins</module>
277         <module>examples</module>
278         <module>testsuites</module>
279         <module>tools</module>
280         <module>packages</module>
281     </modules>
282 </project>