waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | 1ba6a32 | 2019-02-22 17:30:59 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2019 Nordix Foundation. |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
waqas.ikram | 3f300de | 2018-07-05 18:57:02 +0100 | [diff] [blame] | 21 | |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
waqas.ikram | 3f300de | 2018-07-05 18:57:02 +0100 | [diff] [blame] | 26 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
| 27 | <artifactId>integration</artifactId> |
jhh | 26696e5 | 2020-05-28 17:02:18 -0500 | [diff] [blame] | 28 | <version>2.2.4-SNAPSHOT</version> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
waqas.ikram | 3f300de | 2018-07-05 18:57:02 +0100 | [diff] [blame] | 31 | <artifactId>integration-context-test</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 32 | <name>${project.artifactId}</name> |
waqas.ikram | 3f300de | 2018-07-05 18:57:02 +0100 | [diff] [blame] | 33 | <description>[${project.parent.artifactId}] module to run context tests using various plugins, multi-threads and multi-JVMs</description> |
| 34 | |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
liamfallon | efdaa0d | 2018-08-03 16:12:01 +0100 | [diff] [blame] | 38 | <groupId>org.onap.policy.common</groupId> |
| 39 | <artifactId>utils</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 42 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 43 | <artifactId>core-infrastructure</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
liamfallon | 3cb682f | 2019-04-16 11:20:08 +0000 | [diff] [blame] | 48 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
| 49 | <artifactId>integration-common</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame] | 54 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId> |
| 55 | <artifactId>plugins-context-distribution-hazelcast</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame] | 59 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId> |
| 60 | <artifactId>plugins-context-distribution-infinispan</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 61 | <version>${project.version}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame] | 64 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-locking</groupId> |
| 65 | <artifactId>plugins-context-locking-curator</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 66 | <version>${project.version}</version> |
waqas.ikram | 3f300de | 2018-07-05 18:57:02 +0100 | [diff] [blame] | 67 | <exclusions> |
| 68 | <exclusion> |
| 69 | <groupId>org.slf4j</groupId> |
| 70 | <artifactId>slf4j-log4j12</artifactId> |
| 71 | </exclusion> |
| 72 | </exclusions> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame] | 75 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-locking</groupId> |
| 76 | <artifactId>plugins-context-locking-hazelcast</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 77 | <version>${project.version}</version> |
| 78 | </dependency> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 79 | </dependencies> |
| 80 | |
Dinh Danh Le | a4a9922 | 2018-08-23 00:00:00 +0100 | [diff] [blame] | 81 | <profiles> |
| 82 | <profile> |
| 83 | <id>apexSite</id> |
| 84 | <activation> |
| 85 | <property> |
| 86 | <name>apexSite</name> |
| 87 | </property> |
| 88 | </activation> |
| 89 | <distributionManagement> |
| 90 | <site> |
| 91 | <id>${project.artifactId}-site</id> |
| 92 | <url>${apex.adsite.prefix}/modules/testsuites/${project.parent.artifactId}/${project.artifactId}/</url> |
| 93 | </site> |
| 94 | </distributionManagement> |
| 95 | </profile> |
| 96 | </profiles> |
waqas.ikram | dcae33d | 2018-07-17 15:35:47 +0100 | [diff] [blame] | 97 | </project> |