blob: 0224ab29a2e03c25a248922aae5c9ddf664971ac [file] [log] [blame]
eikrwaqa94302f2018-05-23 14:08:29 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
liamfallonc719ee92022-01-12 16:36:45 +00004 Modifications Copyright (C) 2019-2020, 2022 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>
liamfallon3eba9572022-12-15 12:39:37 +000030 <version>3.7.0</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>
liamfallon84f095f2022-10-21 17:45:38 +010036 <version>2.9.0-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>
waqas.ikram75ff76e2018-06-06 11:04:36 +010045 <version.commons-cli>1.4</version.commons-cli>
liamfallon1ba6a322019-02-22 17:30:59 +000046 <version.hibernate>5.3.7.Final</version.hibernate>
liamfallon3eba9572022-12-15 12:39:37 +000047 <version.policy.common>1.12.0</version.policy.common>
48 <version.policy.models>2.8.0</version.policy.models>
liamfallon7d9e1c22019-09-18 15:23:06 +010049 <version.jgroups>4.1.5.Final</version.jgroups>
liamfallon7d9e1c22019-09-18 15:23:06 +010050 <version.caffeine>2.8.0</version.caffeine>
waynedunican23654712020-08-31 13:17:03 +010051 <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths>
eikrwaqa94302f2018-05-23 14:08:29 +010052 </properties>
53
54 <distributionManagement>
55 <site>
56 <id>ecomp-site</id>
57 <url>dav:${onap.nexus.url}${sitePath}</url>
58 </site>
59 </distributionManagement>
60
61 <dependencies>
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
waynedunican6ae054c2020-07-06 09:31:10 +010068 <groupId>org.assertj</groupId>
69 <artifactId>assertj-core</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
Henry.Sun153ad002020-03-02 15:47:09 +080073 <groupId>org.awaitility</groupId>
74 <artifactId>awaitility</artifactId>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
eikrwaqa94302f2018-05-23 14:08:29 +010078 <groupId>org.slf4j</groupId>
79 <artifactId>slf4j-ext</artifactId>
eikrwaqa94302f2018-05-23 14:08:29 +010080 </dependency>
81 <dependency>
82 <groupId>org.slf4j</groupId>
83 <artifactId>slf4j-api</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>ch.qos.logback</groupId>
87 <artifactId>logback-core</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>ch.qos.logback</groupId>
91 <artifactId>logback-classic</artifactId>
92 </dependency>
a.sreekumara86ba142019-07-24 09:35:31 +000093 <dependency>
94 <groupId>org.projectlombok</groupId>
95 <artifactId>lombok</artifactId>
96 </dependency>
eikrwaqa94302f2018-05-23 14:08:29 +010097 </dependencies>
98
liamfallonefdaa0d2018-08-03 16:12:01 +010099 <dependencyManagement>
100 <dependencies>
101 <dependency>
102 <groupId>org.onap.policy.common</groupId>
103 <artifactId>utils</artifactId>
104 <version>${version.policy.common}</version>
105 </dependency>
liamfallonf3250832018-08-30 09:37:29 +0100106 <dependency>
107 <groupId>org.onap.policy.common</groupId>
108 <artifactId>common-parameters</artifactId>
ramverma79e5ede2018-10-24 20:14:02 +0100109 <version>${version.policy.common}</version>
liamfallonf3250832018-08-30 09:37:29 +0100110 </dependency>
Henry.Sun318a9892019-10-09 18:02:56 +0800111 <dependency>
112 <groupId>org.onap.policy.common</groupId>
113 <artifactId>policy-endpoints</artifactId>
114 <version>${version.policy.common}</version>
115 </dependency>
liamfallon7d9e1c22019-09-18 15:23:06 +0100116 <dependency>
liamfallonc30b75d2019-09-25 15:13:37 +0200117 <groupId>org.jgroups</groupId>
liamfallon7d9e1c22019-09-18 15:23:06 +0100118 <artifactId>jgroups</artifactId>
119 <version>${version.jgroups}</version>
120 </dependency>
121 <dependency>
liamfallon7d9e1c22019-09-18 15:23:06 +0100122 <groupId>com.github.ben-manes.caffeine</groupId>
123 <artifactId>caffeine</artifactId>
124 <version>${version.caffeine}</version>
125 </dependency>
liamfallonefdaa0d2018-08-03 16:12:01 +0100126 </dependencies>
127 </dependencyManagement>
eikrwaqa94302f2018-05-23 14:08:29 +0100128
129 <profiles>
130 <profile>
Rashmi Pujardf756c62021-11-26 07:44:23 -0500131 <!--This profile is used to store Eclipse m2e settings only. It has no
eikrwaqa94302f2018-05-23 14:08:29 +0100132 influence on the Maven build itself. -->
133 <id>only-eclipse</id>
134 <activation>
135 <property>
136 <name>m2e.version</name>
137 </property>
138 </activation>
139 <build>
140 <pluginManagement>
141 <plugins>
142 <plugin>
143 <groupId>org.eclipse.m2e</groupId>
144 <artifactId>lifecycle-mapping</artifactId>
145 <version>1.0.0</version>
146 <configuration>
147 <lifecycleMappingMetadata>
148 <pluginExecutions>
149 <pluginExecution>
150 <pluginExecutionFilter>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100151 <groupId>org.codehaus.mojo</groupId>
152 <artifactId>exec-maven-plugin</artifactId>
waqas.ikram48229522018-05-31 14:49:38 +0100153 <versionRange>[1.6.0,)</versionRange>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100154 <goals>
155 <goal>java</goal>
ramverma28ea3362018-07-18 16:28:07 +0100156 <goal>exec</goal>
waqas.ikram34bdfe12018-05-31 11:09:58 +0100157 </goals>
158 </pluginExecutionFilter>
159 <action>
160 <execute />
161 </action>
162 </pluginExecution>
163 <pluginExecution>
164 <pluginExecutionFilter>
eikrwaqa94302f2018-05-23 14:08:29 +0100165 <groupId>org.commonjava.maven.plugins</groupId>
166 <artifactId>directory-maven-plugin</artifactId>
167 <versionRange>0.2</versionRange>
168 <goals>
169 <goal>directory-of</goal>
170 </goals>
171 </pluginExecutionFilter>
172 <action>
173 <execute />
174 </action>
175 </pluginExecution>
ramvermaaf74a622018-07-31 18:25:39 +0100176 <pluginExecution>
ramvermac6d74e62018-07-11 14:21:13 +0100177 <pluginExecutionFilter>
178 <groupId>org.apache.maven.plugins</groupId>
179 <artifactId>maven-dependency-plugin</artifactId>
liamfallon32497612018-11-10 00:39:12 +0000180 <versionRange>[2.0,)</versionRange>
ramvermac6d74e62018-07-11 14:21:13 +0100181 <goals>
liamfallon32497612018-11-10 00:39:12 +0000182 <goal>unpack</goal>
ramvermac6d74e62018-07-11 14:21:13 +0100183 <goal>unpack-dependencies</goal>
184 </goals>
185 </pluginExecutionFilter>
186 <action>
187 <execute />
188 </action>
189 </pluginExecution>
liamfallon32497612018-11-10 00:39:12 +0000190 <pluginExecution>
191 <pluginExecutionFilter>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-antrun-plugin</artifactId>
194 <versionRange>[1.0,)</versionRange>
195 <goals>
196 <goal>run</goal>
197 </goals>
198 </pluginExecutionFilter>
199 <action>
200 <ignore />
201 </action>
202 </pluginExecution>
eikrwaqa94302f2018-05-23 14:08:29 +0100203 </pluginExecutions>
204 </lifecycleMappingMetadata>
205 </configuration>
206 </plugin>
207 </plugins>
208 </pluginManagement>
209 </build>
210 </profile>
211 </profiles>
212
eikrwaqa94302f2018-05-23 14:08:29 +0100213 <modules>
214 <module>model</module>
ramverma10d58cd2018-05-29 15:25:49 +0100215 <module>context</module>
ramverma37d6fd92018-06-01 11:51:36 +0100216 <module>core</module>
waqas.ikram57224402018-06-01 14:23:01 +0100217 <module>auth</module>
waqas.ikram75ff76e2018-06-06 11:04:36 +0100218 <module>services</module>
waqas.ikramf94d7522018-06-05 16:18:01 +0100219 <module>plugins</module>
ramverma3d025432018-07-19 18:45:16 +0100220 <module>examples</module>
waqas.ikram2816ea62018-06-27 16:16:42 +0100221 <module>testsuites</module>
ramverma1eb51982018-07-16 15:23:45 +0100222 <module>tools</module>
liamfallon79ae3f72018-07-24 14:23:37 +0100223 <module>packages</module>
eikrwaqa94302f2018-05-23 14:08:29 +0100224 </modules>
liamfallonc719ee92022-01-12 16:36:45 +0000225</project>