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