update references in policy/apex-pdp pom
[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 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>3.6.1</version>
31         <relativePath />
32     </parent>
33
34     <groupId>org.onap.policy.apex-pdp</groupId>
35     <artifactId>apex-pdp</artifactId>
36     <version>2.8.1-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         <version.commons-cli>1.4</version.commons-cli>
46         <version.hibernate>5.3.7.Final</version.hibernate>
47         <version.policy.common>1.11.1</version.policy.common>
48         <version.policy.models>2.7.1</version.policy.models>
49         <version.jgroups>4.1.5.Final</version.jgroups>
50         <version.caffeine>2.8.0</version.caffeine>
51         <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths>
52     </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>
68             <groupId>org.assertj</groupId>
69             <artifactId>assertj-core</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.awaitility</groupId>
74             <artifactId>awaitility</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.slf4j</groupId>
79             <artifactId>slf4j-ext</artifactId>
80         </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>
93         <dependency>
94             <groupId>org.projectlombok</groupId>
95             <artifactId>lombok</artifactId>
96         </dependency>
97     </dependencies>
98
99     <dependencyManagement>
100         <dependencies>
101             <dependency>
102                 <groupId>org.onap.policy.common</groupId>
103                 <artifactId>utils</artifactId>
104                 <version>${version.policy.common}</version>
105             </dependency>
106             <dependency>
107                 <groupId>org.onap.policy.common</groupId>
108                 <artifactId>common-parameters</artifactId>
109                 <version>${version.policy.common}</version>
110             </dependency>
111             <dependency>
112                 <groupId>org.onap.policy.common</groupId>
113                 <artifactId>policy-endpoints</artifactId>
114                 <version>${version.policy.common}</version>
115             </dependency>
116             <dependency>
117                 <groupId>org.jgroups</groupId>
118                 <artifactId>jgroups</artifactId>
119                 <version>${version.jgroups}</version>
120             </dependency>
121             <dependency>
122                 <groupId>com.github.ben-manes.caffeine</groupId>
123                 <artifactId>caffeine</artifactId>
124                 <version>${version.caffeine}</version>
125             </dependency>
126         </dependencies>
127     </dependencyManagement>
128
129     <profiles>
130         <profile>
131             <!--This profile is used to store Eclipse m2e settings only. It has no
132                 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>
151                                                 <groupId>org.codehaus.mojo</groupId>
152                                                 <artifactId>exec-maven-plugin</artifactId>
153                                                 <versionRange>[1.6.0,)</versionRange>
154                                                 <goals>
155                                                     <goal>java</goal>
156                                                     <goal>exec</goal>
157                                                 </goals>
158                                             </pluginExecutionFilter>
159                                             <action>
160                                                 <execute />
161                                             </action>
162                                         </pluginExecution>
163                                         <pluginExecution>
164                                             <pluginExecutionFilter>
165                                                 <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>
176                                         <pluginExecution>
177                                             <pluginExecutionFilter>
178                                                 <groupId>org.apache.maven.plugins</groupId>
179                                                 <artifactId>maven-dependency-plugin</artifactId>
180                                                 <versionRange>[2.0,)</versionRange>
181                                                 <goals>
182                                                     <goal>unpack</goal>
183                                                     <goal>unpack-dependencies</goal>
184                                                 </goals>
185                                             </pluginExecutionFilter>
186                                             <action>
187                                                 <execute />
188                                             </action>
189                                         </pluginExecution>
190                                         <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>
203                                     </pluginExecutions>
204                                 </lifecycleMappingMetadata>
205                             </configuration>
206                         </plugin>
207                     </plugins>
208                 </pluginManagement>
209             </build>
210         </profile>
211     </profiles>
212
213     <modules>
214         <module>model</module>
215         <module>context</module>
216         <module>core</module>
217         <module>auth</module>
218         <module>services</module>
219         <module>plugins</module>
220         <module>examples</module>
221         <module>testsuites</module>
222         <module>tools</module>
223         <module>packages</module>
224     </modules>
225 </project>