blob: 0a20b00141364765f1786db2850c8019dcfafc2e [file] [log] [blame]
eikrwaqa94302f2018-05-23 14:08:29 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
liamfallon367daa92023-02-17 19:16:34 +00004 Modifications Copyright (C) 2019-2020, 2022-2023 Nordix Foundation.
HOCKLAc759d772020-01-10 15:37:28 -06005 Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
a.sreekumar1f477532021-02-23 15:45:34 +00006 Modifications Copyright (C) 2020-2021 Bell Canada.
eikrwaqa94302f2018-05-23 14:08:29 +01007 ================================================================================
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
liamfallon32497612018-11-10 00:39:12 +000024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
adheli.tavaresa3a032d2023-08-10 16:58:48 +010025 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
eikrwaqa94302f2018-05-23 14:08:29 +010026 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.policy.parent</groupId>
29 <artifactId>integration</artifactId>
liamfallon00e1d222023-10-18 15:48:30 +010030 <version>4.0.2-SNAPSHOT</version>
liamfallonb4aa19a2023-10-18 09:08:31 +010031 <relativePath />
eikrwaqa94302f2018-05-23 14:08:29 +010032 </parent>
33
waqas.ikramf524b882018-05-24 15:31:21 +010034 <groupId>org.onap.policy.apex-pdp</groupId>
eikrwaqa94302f2018-05-23 14:08:29 +010035 <artifactId>apex-pdp</artifactId>
liamfallon00e1d222023-10-18 15:48:30 +010036 <version>3.0.2-SNAPSHOT</version>
eikrwaqa94302f2018-05-23 14:08:29 +010037 <packaging>pom</packaging>
38
ramverma6029d252018-05-25 11:55:45 +010039 <name>policy-apex-pdp</name>
eikrwaqa94302f2018-05-23 14:08:29 +010040 <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>
adheli.tavaresa3a032d2023-08-10 16:58:48 +010045 <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info
46 </sonar.javascript.lcov.reportPaths>
liamfallon367daa92023-02-17 19:16:34 +000047
48 <!-- Policy framework dependencies -->
liamfallon00e1d222023-10-18 15:48:30 +010049 <version.policy.common>2.0.2-SNAPSHOT</version.policy.common>
50 <version.policy.models>3.0.2-SNAPSHOT</version.policy.models>
liamfallon367daa92023-02-17 19:16:34 +000051
52 <!-- Apex-specific dependencies -->
adheli.tavaresa3a032d2023-08-10 16:58:48 +010053 <version.activemq>5.18.2</version.activemq>
54 <version.antlr.st4>4.3.4</version.antlr.st4>
55 <version.antlr-runtime>4.13.0</version.antlr-runtime>
56 <version.artemis>2.30.0</version.artemis>
57 <version.avro>1.11.2</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.jackson-databind>2.13.5</version.jackson-databind>
63 <version.jgroups>5.2.18.Final</version.jgroups>
64 <version.jms>3.1.0</version.jms>
65 <version.jnr.jffi>1.3.11</version.jnr.jffi>
66 <version.jnr.jnr-posix>3.1.17</version.jnr.jnr-posix>
67 <version.jruby-core>9.4.3.0</version.jruby-core>
68 <version.jruby-joni>2.2.1</version.jruby-joni>
liamfallon367daa92023-02-17 19:16:34 +000069 <version.jruby-extras-bytelist>1.0.15</version.jruby-extras-bytelist>
70 <version.jython-standalone>2.7.3</version.jython-standalone>
adheli.tavaresde1362e2023-11-08 18:08:27 +000071 <version.kafka>3.6.0</version.kafka>
72 <version.kafka-avro-serializer>7.5.1</version.kafka-avro-serializer>
adheli.tavaresa3a032d2023-08-10 16:58:48 +010073 <version.kafka-junit4>3.2.5</version.kafka-junit4>
liamfallon367daa92023-02-17 19:16:34 +000074 <version.rhino>1.7.14</version.rhino>
adheli.tavaresa3a032d2023-08-10 16:58:48 +010075 <version.websocket.jakarta>2.1.1</version.websocket.jakarta>
adheli.tavaresde1362e2023-11-08 18:08:27 +000076 <version.zookeeper>3.9.1</version.zookeeper>
adheli.tavaresa3a032d2023-08-10 16:58:48 +010077 </properties>
eikrwaqa94302f2018-05-23 14:08:29 +010078
79 <distributionManagement>
80 <site>
81 <id>ecomp-site</id>
82 <url>dav:${onap.nexus.url}${sitePath}</url>
83 </site>
84 </distributionManagement>
85
86 <dependencies>
87 <dependency>
88 <groupId>junit</groupId>
89 <artifactId>junit</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
adheli.tavaresa3a032d2023-08-10 16:58:48 +010093 <groupId>org.springframework</groupId>
94 <artifactId>spring-test</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.mockito</groupId>
98 <artifactId>mockito-core</artifactId>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.mockito</groupId>
103 <artifactId>mockito-junit-jupiter</artifactId>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
waynedunican6ae054c2020-07-06 09:31:10 +0100107 <groupId>org.assertj</groupId>
108 <artifactId>assertj-core</artifactId>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
Henry.Sun153ad002020-03-02 15:47:09 +0800112 <groupId>org.awaitility</groupId>
113 <artifactId>awaitility</artifactId>
114 <scope>test</scope>
115 </dependency>
116 <dependency>
eikrwaqa94302f2018-05-23 14:08:29 +0100117 <groupId>org.slf4j</groupId>
118 <artifactId>slf4j-ext</artifactId>
eikrwaqa94302f2018-05-23 14:08:29 +0100119 </dependency>
120 <dependency>
121 <groupId>org.slf4j</groupId>
122 <artifactId>slf4j-api</artifactId>
123 </dependency>
124 <dependency>
125 <groupId>ch.qos.logback</groupId>
126 <artifactId>logback-core</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>ch.qos.logback</groupId>
130 <artifactId>logback-classic</artifactId>
131 </dependency>
a.sreekumara86ba142019-07-24 09:35:31 +0000132 <dependency>
133 <groupId>org.projectlombok</groupId>
134 <artifactId>lombok</artifactId>
135 </dependency>
eikrwaqa94302f2018-05-23 14:08:29 +0100136 </dependencies>
137
liamfallonefdaa0d2018-08-03 16:12:01 +0100138 <dependencyManagement>
139 <dependencies>
140 <dependency>
141 <groupId>org.onap.policy.common</groupId>
142 <artifactId>utils</artifactId>
143 <version>${version.policy.common}</version>
144 </dependency>
liamfallonf3250832018-08-30 09:37:29 +0100145 <dependency>
146 <groupId>org.onap.policy.common</groupId>
147 <artifactId>common-parameters</artifactId>
ramverma79e5ede2018-10-24 20:14:02 +0100148 <version>${version.policy.common}</version>
liamfallonf3250832018-08-30 09:37:29 +0100149 </dependency>
Henry.Sun318a9892019-10-09 18:02:56 +0800150 <dependency>
151 <groupId>org.onap.policy.common</groupId>
152 <artifactId>policy-endpoints</artifactId>
153 <version>${version.policy.common}</version>
154 </dependency>
liamfallon7d9e1c22019-09-18 15:23:06 +0100155 <dependency>
liamfallonc30b75d2019-09-25 15:13:37 +0200156 <groupId>org.jgroups</groupId>
liamfallon7d9e1c22019-09-18 15:23:06 +0100157 <artifactId>jgroups</artifactId>
158 <version>${version.jgroups}</version>
159 </dependency>
160 <dependency>
liamfallon7d9e1c22019-09-18 15:23:06 +0100161 <groupId>com.github.ben-manes.caffeine</groupId>
162 <artifactId>caffeine</artifactId>
163 <version>${version.caffeine}</version>
164 </dependency>
liamfallonefdaa0d2018-08-03 16:12:01 +0100165 </dependencies>
166 </dependencyManagement>
eikrwaqa94302f2018-05-23 14:08:29 +0100167
168 <profiles>
169 <profile>
Rashmi Pujardf756c62021-11-26 07:44:23 -0500170 <!--This profile is used to store Eclipse m2e settings only. It has no
eikrwaqa94302f2018-05-23 14:08:29 +0100171 influence on the Maven build itself. -->
172 <id>only-eclipse</id>
173 <activation>
174 <property>
175 <name>m2e.version</name>
176 </property>
177 </activation>
178 <build>
179 <pluginManagement>
180 <plugins>
181 <plugin>
182 <groupId>org.eclipse.m2e</groupId>
183 <artifactId>lifecycle-mapping</artifactId>
184 <version>1.0.0</version>
185 <configuration>
186 <lifecycleMappingMetadata>
187 <pluginExecutions>
188 <pluginExecution>
189 <pluginExecutionFilter>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100190 <groupId>org.codehaus.mojo</groupId>
191 <artifactId>exec-maven-plugin</artifactId>
waqas.ikram48229522018-05-31 14:49:38 +0100192 <versionRange>[1.6.0,)</versionRange>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100193 <goals>
194 <goal>java</goal>
ramverma28ea3362018-07-18 16:28:07 +0100195 <goal>exec</goal>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100196 </goals>
197 </pluginExecutionFilter>
198 <action>
adheli.tavaresa3a032d2023-08-10 16:58:48 +0100199 <execute/>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100200 </action>
201 </pluginExecution>
202 <pluginExecution>
203 <pluginExecutionFilter>
eikrwaqa94302f2018-05-23 14:08:29 +0100204 <groupId>org.commonjava.maven.plugins</groupId>
205 <artifactId>directory-maven-plugin</artifactId>
206 <versionRange>0.2</versionRange>
207 <goals>
208 <goal>directory-of</goal>
209 </goals>
210 </pluginExecutionFilter>
211 <action>
adheli.tavaresa3a032d2023-08-10 16:58:48 +0100212 <execute/>
eikrwaqa94302f2018-05-23 14:08:29 +0100213 </action>
214 </pluginExecution>
ramvermaaf74a622018-07-31 18:25:39 +0100215 <pluginExecution>
ramvermac6d74e62018-07-11 14:21:13 +0100216 <pluginExecutionFilter>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-dependency-plugin</artifactId>
liamfallon32497612018-11-10 00:39:12 +0000219 <versionRange>[2.0,)</versionRange>
ramvermac6d74e62018-07-11 14:21:13 +0100220 <goals>
liamfallon32497612018-11-10 00:39:12 +0000221 <goal>unpack</goal>
ramvermac6d74e62018-07-11 14:21:13 +0100222 <goal>unpack-dependencies</goal>
223 </goals>
224 </pluginExecutionFilter>
225 <action>
adheli.tavaresa3a032d2023-08-10 16:58:48 +0100226 <execute/>
ramvermac6d74e62018-07-11 14:21:13 +0100227 </action>
228 </pluginExecution>
liamfallon32497612018-11-10 00:39:12 +0000229 <pluginExecution>
230 <pluginExecutionFilter>
231 <groupId>org.apache.maven.plugins</groupId>
232 <artifactId>maven-antrun-plugin</artifactId>
233 <versionRange>[1.0,)</versionRange>
234 <goals>
235 <goal>run</goal>
236 </goals>
237 </pluginExecutionFilter>
238 <action>
adheli.tavaresa3a032d2023-08-10 16:58:48 +0100239 <ignore/>
liamfallon32497612018-11-10 00:39:12 +0000240 </action>
241 </pluginExecution>
eikrwaqa94302f2018-05-23 14:08:29 +0100242 </pluginExecutions>
243 </lifecycleMappingMetadata>
244 </configuration>
245 </plugin>
246 </plugins>
247 </pluginManagement>
248 </build>
249 </profile>
250 </profiles>
251
eikrwaqa94302f2018-05-23 14:08:29 +0100252 <modules>
253 <module>model</module>
ramverma10d58cd2018-05-29 15:25:49 +0100254 <module>context</module>
ramverma37d6fd92018-06-01 11:51:36 +0100255 <module>core</module>
waqas.ikram57224402018-06-01 14:23:01 +0100256 <module>auth</module>
waqas.ikram75ff76e2018-06-06 11:04:36 +0100257 <module>services</module>
waqas.ikramf94d7522018-06-05 16:18:01 +0100258 <module>plugins</module>
ramverma3d025432018-07-19 18:45:16 +0100259 <module>examples</module>
waqas.ikram2816ea62018-06-27 16:16:42 +0100260 <module>testsuites</module>
ramverma1eb51982018-07-16 15:23:45 +0100261 <module>tools</module>
liamfallon79ae3f72018-07-24 14:23:37 +0100262 <module>packages</module>
eikrwaqa94302f2018-05-23 14:08:29 +0100263 </modules>
liamfallonc719ee92022-01-12 16:36:45 +0000264</project>