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 | --> |
| 20 | |
| 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 | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 25 | <groupId>org.onap.policy.apex-pdp.testsuites.performance</groupId> |
| 26 | <artifactId>performance</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 27 | <version>2.0.0-SNAPSHOT</version> |
| 28 | </parent> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 29 | |
| 30 | <artifactId>performance-context-metrics</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 31 | <name>${project.artifactId}</name> |
| 32 | <description>[${project.parent.artifactId}] module to calculate metrics using various plugins</description> |
| 33 | |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 37 | <artifactId>core-infrastructure</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.policy.apex-pdp.context</groupId> |
waqas.ikram | 3f300de | 2018-07-05 18:57:02 +0100 | [diff] [blame] | 42 | <artifactId>context-test-utils</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame^] | 46 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId> |
| 47 | <artifactId>plugins-context-distribution-hazelcast</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame^] | 51 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId> |
| 52 | <artifactId>plugins-context-distribution-infinispan</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame^] | 56 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-locking</groupId> |
| 57 | <artifactId>plugins-context-locking-curator</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame^] | 61 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-locking</groupId> |
| 62 | <artifactId>plugins-context-locking-hazelcast</artifactId> |
waqas.ikram | f94d752 | 2018-06-05 16:18:01 +0100 | [diff] [blame] | 63 | <version>${project.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.apache.curator</groupId> |
| 67 | <artifactId>curator-test</artifactId> |
| 68 | <version>3.2.0</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | </dependencies> |
liamfallon | b109c21 | 2018-07-18 11:23:20 +0100 | [diff] [blame^] | 72 | </project> |