eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | c719ee9 | 2022-01-12 16:36:45 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2019-2020, 2022 Nordix Foundation. |
HOCKLA | c759d77 | 2020-01-10 15:37:28 -0600 | [diff] [blame] | 5 | Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. |
a.sreekumar | 1f47753 | 2021-02-23 15:45:34 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2020-2021 Bell Canada. |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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 | |
liamfallon | 3249761 | 2018-11-10 00:39:12 +0000 | [diff] [blame] | 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"> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
| 28 | <groupId>org.onap.policy.parent</groupId> |
| 29 | <artifactId>integration</artifactId> |
liamfallon | 3eba957 | 2022-12-15 12:39:37 +0000 | [diff] [blame] | 30 | <version>3.7.0</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 31 | <relativePath /> |
| 32 | </parent> |
| 33 | |
waqas.ikram | f524b88 | 2018-05-24 15:31:21 +0100 | [diff] [blame] | 34 | <groupId>org.onap.policy.apex-pdp</groupId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 35 | <artifactId>apex-pdp</artifactId> |
liamfallon | 84f095f | 2022-10-21 17:45:38 +0100 | [diff] [blame] | 36 | <version>2.9.0-SNAPSHOT</version> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 37 | <packaging>pom</packaging> |
| 38 | |
ramverma | 6029d25 | 2018-05-25 11:55:45 +0100 | [diff] [blame] | 39 | <name>policy-apex-pdp</name> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 45 | <version.commons-cli>1.4</version.commons-cli> |
liamfallon | 1ba6a32 | 2019-02-22 17:30:59 +0000 | [diff] [blame] | 46 | <version.hibernate>5.3.7.Final</version.hibernate> |
liamfallon | 3eba957 | 2022-12-15 12:39:37 +0000 | [diff] [blame] | 47 | <version.policy.common>1.12.0</version.policy.common> |
| 48 | <version.policy.models>2.8.0</version.policy.models> |
liamfallon | 7d9e1c2 | 2019-09-18 15:23:06 +0100 | [diff] [blame] | 49 | <version.jgroups>4.1.5.Final</version.jgroups> |
liamfallon | 7d9e1c2 | 2019-09-18 15:23:06 +0100 | [diff] [blame] | 50 | <version.caffeine>2.8.0</version.caffeine> |
waynedunican | 2365471 | 2020-08-31 13:17:03 +0100 | [diff] [blame] | 51 | <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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> |
waynedunican | 6ae054c | 2020-07-06 09:31:10 +0100 | [diff] [blame] | 68 | <groupId>org.assertj</groupId> |
| 69 | <artifactId>assertj-core</artifactId> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
Henry.Sun | 153ad00 | 2020-03-02 15:47:09 +0800 | [diff] [blame] | 73 | <groupId>org.awaitility</groupId> |
| 74 | <artifactId>awaitility</artifactId> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 78 | <groupId>org.slf4j</groupId> |
| 79 | <artifactId>slf4j-ext</artifactId> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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> |
a.sreekumar | a86ba14 | 2019-07-24 09:35:31 +0000 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>org.projectlombok</groupId> |
| 95 | <artifactId>lombok</artifactId> |
| 96 | </dependency> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 97 | </dependencies> |
| 98 | |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 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> |
liamfallon | f325083 | 2018-08-30 09:37:29 +0100 | [diff] [blame] | 106 | <dependency> |
| 107 | <groupId>org.onap.policy.common</groupId> |
| 108 | <artifactId>common-parameters</artifactId> |
ramverma | 79e5ede | 2018-10-24 20:14:02 +0100 | [diff] [blame] | 109 | <version>${version.policy.common}</version> |
liamfallon | f325083 | 2018-08-30 09:37:29 +0100 | [diff] [blame] | 110 | </dependency> |
Henry.Sun | 318a989 | 2019-10-09 18:02:56 +0800 | [diff] [blame] | 111 | <dependency> |
| 112 | <groupId>org.onap.policy.common</groupId> |
| 113 | <artifactId>policy-endpoints</artifactId> |
| 114 | <version>${version.policy.common}</version> |
| 115 | </dependency> |
liamfallon | 7d9e1c2 | 2019-09-18 15:23:06 +0100 | [diff] [blame] | 116 | <dependency> |
liamfallon | c30b75d | 2019-09-25 15:13:37 +0200 | [diff] [blame] | 117 | <groupId>org.jgroups</groupId> |
liamfallon | 7d9e1c2 | 2019-09-18 15:23:06 +0100 | [diff] [blame] | 118 | <artifactId>jgroups</artifactId> |
| 119 | <version>${version.jgroups}</version> |
| 120 | </dependency> |
| 121 | <dependency> |
liamfallon | 7d9e1c2 | 2019-09-18 15:23:06 +0100 | [diff] [blame] | 122 | <groupId>com.github.ben-manes.caffeine</groupId> |
| 123 | <artifactId>caffeine</artifactId> |
| 124 | <version>${version.caffeine}</version> |
| 125 | </dependency> |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 126 | </dependencies> |
| 127 | </dependencyManagement> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 128 | |
| 129 | <profiles> |
| 130 | <profile> |
Rashmi Pujar | df756c6 | 2021-11-26 07:44:23 -0500 | [diff] [blame] | 131 | <!--This profile is used to store Eclipse m2e settings only. It has no |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 151 | <groupId>org.codehaus.mojo</groupId> |
| 152 | <artifactId>exec-maven-plugin</artifactId> |
waqas.ikram | 4822952 | 2018-05-31 14:49:38 +0100 | [diff] [blame] | 153 | <versionRange>[1.6.0,)</versionRange> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 154 | <goals> |
| 155 | <goal>java</goal> |
ramverma | 28ea336 | 2018-07-18 16:28:07 +0100 | [diff] [blame] | 156 | <goal>exec</goal> |
waqas.ikram | 34bdfe1 | 2018-05-31 11:09:58 +0100 | [diff] [blame] | 157 | </goals> |
| 158 | </pluginExecutionFilter> |
| 159 | <action> |
| 160 | <execute /> |
| 161 | </action> |
| 162 | </pluginExecution> |
| 163 | <pluginExecution> |
| 164 | <pluginExecutionFilter> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 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> |
ramverma | af74a62 | 2018-07-31 18:25:39 +0100 | [diff] [blame] | 176 | <pluginExecution> |
ramverma | c6d74e6 | 2018-07-11 14:21:13 +0100 | [diff] [blame] | 177 | <pluginExecutionFilter> |
| 178 | <groupId>org.apache.maven.plugins</groupId> |
| 179 | <artifactId>maven-dependency-plugin</artifactId> |
liamfallon | 3249761 | 2018-11-10 00:39:12 +0000 | [diff] [blame] | 180 | <versionRange>[2.0,)</versionRange> |
ramverma | c6d74e6 | 2018-07-11 14:21:13 +0100 | [diff] [blame] | 181 | <goals> |
liamfallon | 3249761 | 2018-11-10 00:39:12 +0000 | [diff] [blame] | 182 | <goal>unpack</goal> |
ramverma | c6d74e6 | 2018-07-11 14:21:13 +0100 | [diff] [blame] | 183 | <goal>unpack-dependencies</goal> |
| 184 | </goals> |
| 185 | </pluginExecutionFilter> |
| 186 | <action> |
| 187 | <execute /> |
| 188 | </action> |
| 189 | </pluginExecution> |
liamfallon | 3249761 | 2018-11-10 00:39:12 +0000 | [diff] [blame] | 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> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 203 | </pluginExecutions> |
| 204 | </lifecycleMappingMetadata> |
| 205 | </configuration> |
| 206 | </plugin> |
| 207 | </plugins> |
| 208 | </pluginManagement> |
| 209 | </build> |
| 210 | </profile> |
| 211 | </profiles> |
| 212 | |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 213 | <modules> |
| 214 | <module>model</module> |
ramverma | 10d58cd | 2018-05-29 15:25:49 +0100 | [diff] [blame] | 215 | <module>context</module> |
ramverma | 37d6fd9 | 2018-06-01 11:51:36 +0100 | [diff] [blame] | 216 | <module>core</module> |
waqas.ikram | 5722440 | 2018-06-01 14:23:01 +0100 | [diff] [blame] | 217 | <module>auth</module> |
waqas.ikram | 75ff76e | 2018-06-06 11:04:36 +0100 | [diff] [blame] | 218 | <module>services</module> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 219 | <module>plugins</module> |
ramverma | 3d02543 | 2018-07-19 18:45:16 +0100 | [diff] [blame] | 220 | <module>examples</module> |
waqas.ikram | 2816ea6 | 2018-06-27 16:16:42 +0100 | [diff] [blame] | 221 | <module>testsuites</module> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 222 | <module>tools</module> |
liamfallon | 79ae3f7 | 2018-07-24 14:23:37 +0100 | [diff] [blame] | 223 | <module>packages</module> |
eikrwaq | a94302f | 2018-05-23 14:08:29 +0100 | [diff] [blame] | 224 | </modules> |
liamfallon | c719ee9 | 2022-01-12 16:36:45 +0000 | [diff] [blame] | 225 | </project> |