blob: f44ca3fba332b7592435c6325fb9d12011d1b427 [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"
25 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>
liamfallona54acdf2022-12-15 16:19:41 +000030 <version>3.7.1-SNAPSHOT</version>
eikrwaqa94302f2018-05-23 14:08:29 +010031 <relativePath />
32 </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>
liamfallona54acdf2022-12-15 16:19:41 +000036 <version>2.9.1-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>
liamfallon367daa92023-02-17 19:16:34 +000045 <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths>
46
47 <!-- Policy framework dependencies -->
liamfallona54acdf2022-12-15 16:19:41 +000048 <version.policy.common>1.12.1-SNAPSHOT</version.policy.common>
49 <version.policy.models>2.8.1-SNAPSHOT</version.policy.models>
liamfallon367daa92023-02-17 19:16:34 +000050
51 <!-- Apex-specific dependencies -->
52 <version.activemq>5.17.3</version.activemq>
53 <version.artemis-jms-client>2.28.0</version.artemis-jms-client>
54 <version.avro>1.11.1</version.avro>
55 <version.caffeine>3.1.3</version.caffeine>
56 <version.curator>5.4.0</version.curator>
liamfallon7d9e1c22019-09-18 15:23:06 +010057 <version.jgroups>4.1.5.Final</version.jgroups>
liamfallon367daa92023-02-17 19:16:34 +000058 <version.jnr.jffi>1.3.10</version.jnr.jffi>
59 <version.jnr.jnr-posix>3.1.16</version.jnr.jnr-posix>
60 <version.jruby-core>9.4.1.0</version.jruby-core>
61 <version.jruby-joni>2.1.48</version.jruby-joni>
62 <version.jruby-extras-bytelist>1.0.15</version.jruby-extras-bytelist>
63 <version.jython-standalone>2.7.3</version.jython-standalone>
64 <version.kafka-avro-serializer>7.3.1</version.kafka-avro-serializer>
65 <version.kafka-junit4>3.2.4</version.kafka-junit4>
66 <version.rhino>1.7.14</version.rhino>
67 <version.zookeeper>3.8.1</version.zookeeper>
68 </properties>
eikrwaqa94302f2018-05-23 14:08:29 +010069
70 <distributionManagement>
71 <site>
72 <id>ecomp-site</id>
73 <url>dav:${onap.nexus.url}${sitePath}</url>
74 </site>
75 </distributionManagement>
76
77 <dependencies>
78 <dependency>
79 <groupId>junit</groupId>
80 <artifactId>junit</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
waynedunican6ae054c2020-07-06 09:31:10 +010084 <groupId>org.assertj</groupId>
85 <artifactId>assertj-core</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
Henry.Sun153ad002020-03-02 15:47:09 +080089 <groupId>org.awaitility</groupId>
90 <artifactId>awaitility</artifactId>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
eikrwaqa94302f2018-05-23 14:08:29 +010094 <groupId>org.slf4j</groupId>
95 <artifactId>slf4j-ext</artifactId>
eikrwaqa94302f2018-05-23 14:08:29 +010096 </dependency>
97 <dependency>
98 <groupId>org.slf4j</groupId>
99 <artifactId>slf4j-api</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>ch.qos.logback</groupId>
103 <artifactId>logback-core</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>ch.qos.logback</groupId>
107 <artifactId>logback-classic</artifactId>
108 </dependency>
a.sreekumara86ba142019-07-24 09:35:31 +0000109 <dependency>
110 <groupId>org.projectlombok</groupId>
111 <artifactId>lombok</artifactId>
112 </dependency>
eikrwaqa94302f2018-05-23 14:08:29 +0100113 </dependencies>
114
liamfallonefdaa0d2018-08-03 16:12:01 +0100115 <dependencyManagement>
116 <dependencies>
117 <dependency>
118 <groupId>org.onap.policy.common</groupId>
119 <artifactId>utils</artifactId>
120 <version>${version.policy.common}</version>
121 </dependency>
liamfallonf3250832018-08-30 09:37:29 +0100122 <dependency>
123 <groupId>org.onap.policy.common</groupId>
124 <artifactId>common-parameters</artifactId>
ramverma79e5ede2018-10-24 20:14:02 +0100125 <version>${version.policy.common}</version>
liamfallonf3250832018-08-30 09:37:29 +0100126 </dependency>
Henry.Sun318a9892019-10-09 18:02:56 +0800127 <dependency>
128 <groupId>org.onap.policy.common</groupId>
129 <artifactId>policy-endpoints</artifactId>
130 <version>${version.policy.common}</version>
131 </dependency>
liamfallon7d9e1c22019-09-18 15:23:06 +0100132 <dependency>
liamfallonc30b75d2019-09-25 15:13:37 +0200133 <groupId>org.jgroups</groupId>
liamfallon7d9e1c22019-09-18 15:23:06 +0100134 <artifactId>jgroups</artifactId>
135 <version>${version.jgroups}</version>
136 </dependency>
137 <dependency>
liamfallon7d9e1c22019-09-18 15:23:06 +0100138 <groupId>com.github.ben-manes.caffeine</groupId>
139 <artifactId>caffeine</artifactId>
140 <version>${version.caffeine}</version>
141 </dependency>
liamfallonefdaa0d2018-08-03 16:12:01 +0100142 </dependencies>
143 </dependencyManagement>
eikrwaqa94302f2018-05-23 14:08:29 +0100144
145 <profiles>
146 <profile>
Rashmi Pujardf756c62021-11-26 07:44:23 -0500147 <!--This profile is used to store Eclipse m2e settings only. It has no
eikrwaqa94302f2018-05-23 14:08:29 +0100148 influence on the Maven build itself. -->
149 <id>only-eclipse</id>
150 <activation>
151 <property>
152 <name>m2e.version</name>
153 </property>
154 </activation>
155 <build>
156 <pluginManagement>
157 <plugins>
158 <plugin>
159 <groupId>org.eclipse.m2e</groupId>
160 <artifactId>lifecycle-mapping</artifactId>
161 <version>1.0.0</version>
162 <configuration>
163 <lifecycleMappingMetadata>
164 <pluginExecutions>
165 <pluginExecution>
166 <pluginExecutionFilter>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100167 <groupId>org.codehaus.mojo</groupId>
168 <artifactId>exec-maven-plugin</artifactId>
waqas.ikram48229522018-05-31 14:49:38 +0100169 <versionRange>[1.6.0,)</versionRange>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100170 <goals>
171 <goal>java</goal>
ramverma28ea3362018-07-18 16:28:07 +0100172 <goal>exec</goal>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100173 </goals>
174 </pluginExecutionFilter>
175 <action>
176 <execute />
177 </action>
178 </pluginExecution>
179 <pluginExecution>
180 <pluginExecutionFilter>
eikrwaqa94302f2018-05-23 14:08:29 +0100181 <groupId>org.commonjava.maven.plugins</groupId>
182 <artifactId>directory-maven-plugin</artifactId>
183 <versionRange>0.2</versionRange>
184 <goals>
185 <goal>directory-of</goal>
186 </goals>
187 </pluginExecutionFilter>
188 <action>
189 <execute />
190 </action>
191 </pluginExecution>
ramvermaaf74a622018-07-31 18:25:39 +0100192 <pluginExecution>
ramvermac6d74e62018-07-11 14:21:13 +0100193 <pluginExecutionFilter>
194 <groupId>org.apache.maven.plugins</groupId>
195 <artifactId>maven-dependency-plugin</artifactId>
liamfallon32497612018-11-10 00:39:12 +0000196 <versionRange>[2.0,)</versionRange>
ramvermac6d74e62018-07-11 14:21:13 +0100197 <goals>
liamfallon32497612018-11-10 00:39:12 +0000198 <goal>unpack</goal>
ramvermac6d74e62018-07-11 14:21:13 +0100199 <goal>unpack-dependencies</goal>
200 </goals>
201 </pluginExecutionFilter>
202 <action>
203 <execute />
204 </action>
205 </pluginExecution>
liamfallon32497612018-11-10 00:39:12 +0000206 <pluginExecution>
207 <pluginExecutionFilter>
208 <groupId>org.apache.maven.plugins</groupId>
209 <artifactId>maven-antrun-plugin</artifactId>
210 <versionRange>[1.0,)</versionRange>
211 <goals>
212 <goal>run</goal>
213 </goals>
214 </pluginExecutionFilter>
215 <action>
216 <ignore />
217 </action>
218 </pluginExecution>
eikrwaqa94302f2018-05-23 14:08:29 +0100219 </pluginExecutions>
220 </lifecycleMappingMetadata>
221 </configuration>
222 </plugin>
223 </plugins>
224 </pluginManagement>
225 </build>
226 </profile>
227 </profiles>
228
eikrwaqa94302f2018-05-23 14:08:29 +0100229 <modules>
230 <module>model</module>
ramverma10d58cd2018-05-29 15:25:49 +0100231 <module>context</module>
ramverma37d6fd92018-06-01 11:51:36 +0100232 <module>core</module>
waqas.ikram57224402018-06-01 14:23:01 +0100233 <module>auth</module>
waqas.ikram75ff76e2018-06-06 11:04:36 +0100234 <module>services</module>
waqas.ikramf94d7522018-06-05 16:18:01 +0100235 <module>plugins</module>
ramverma3d025432018-07-19 18:45:16 +0100236 <module>examples</module>
waqas.ikram2816ea62018-06-27 16:16:42 +0100237 <module>testsuites</module>
ramverma1eb51982018-07-16 15:23:45 +0100238 <module>tools</module>
liamfallon79ae3f72018-07-24 14:23:37 +0100239 <module>packages</module>
eikrwaqa94302f2018-05-23 14:08:29 +0100240 </modules>
liamfallonc719ee92022-01-12 16:36:45 +0000241</project>