waqas.ikram | cb768ce | 2018-07-12 12:47:09 +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 | cb768ce | 2018-07-12 12:47:09 +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 | --> |
liamfallon | 1f7c861 | 2018-11-20 15:59:50 +0000 | [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"> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.apex-pdp.testsuites</groupId> |
| 26 | <artifactId>testsuites</artifactId> |
jrh3 | d7d9df6 | 2019-09-12 10:07:06 -0400 | [diff] [blame] | 27 | <version>2.3.0-SNAPSHOT</version> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <groupId>org.onap.policy.apex-pdp.testsuites.performance</groupId> |
| 31 | <artifactId>performance</artifactId> |
| 32 | <packaging>pom</packaging> |
| 33 | |
| 34 | <profiles> |
| 35 | <profile> |
liamfallon | 1f7c861 | 2018-11-20 15:59:50 +0000 | [diff] [blame] | 36 | <id>apexDefault</id> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 37 | <activation> |
liamfallon | 1f7c861 | 2018-11-20 15:59:50 +0000 | [diff] [blame] | 38 | <activeByDefault>true</activeByDefault> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 39 | </activation> |
| 40 | <modules> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 41 | <module>performance-benchmark-test</module> |
| 42 | </modules> |
| 43 | </profile> |
| 44 | <profile> |
| 45 | <id>apexAll</id> |
| 46 | <activation> |
| 47 | <property> |
| 48 | <name>apexAll</name> |
| 49 | </property> |
| 50 | </activation> |
| 51 | <modules> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 52 | <module>performance-benchmark-test</module> |
| 53 | </modules> |
| 54 | </profile> |
Dinh Danh Le | a4a9922 | 2018-08-23 00:00:00 +0100 | [diff] [blame] | 55 | |
| 56 | <profile> |
| 57 | <id>apexSite</id> |
| 58 | <activation> |
| 59 | <property> |
| 60 | <name>apexSite</name> |
| 61 | </property> |
| 62 | </activation> |
| 63 | <distributionManagement> |
| 64 | <site> |
| 65 | <id>${project.artifactId}-site</id> |
| 66 | <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> |
| 67 | </site> |
| 68 | </distributionManagement> |
| 69 | </profile> |
waqas.ikram | cb768ce | 2018-07-12 12:47:09 +0100 | [diff] [blame] | 70 | </profiles> |
liamfallon | 1ba6a32 | 2019-02-22 17:30:59 +0000 | [diff] [blame] | 71 | </project> |