ramverma | 78c6f58 | 2018-10-23 16:58:34 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Ram Krishna Verma | 8d22852 | 2020-02-05 16:31:01 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Bell Canada. |
ramverma | 78c6f58 | 2018-10-23 16:58:34 +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 | --> |
| 21 | |
ramverma | ea736d0 | 2018-11-29 13:47:30 +0000 | [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"> |
ramverma | 78c6f58 | 2018-10-23 16:58:34 +0100 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.apex-pdp.testsuites</groupId> |
Ram Krishna Verma | 8d22852 | 2020-02-05 16:31:01 -0500 | [diff] [blame] | 27 | <artifactId>apex-testsuites</artifactId> |
liamfallon | a54acdf | 2022-12-15 16:19:41 +0000 | [diff] [blame] | 28 | <version>2.9.1-SNAPSHOT</version> |
ramverma | 78c6f58 | 2018-10-23 16:58:34 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <groupId>org.onap.policy.apex-pdp.testsuites.stability</groupId> |
| 32 | <artifactId>apex-pdp-stability</artifactId> |
| 33 | |
| 34 | <name>${project.artifactId}</name> |
| 35 | <description>This module contains test plan for running stability test of apex-pdp</description> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-assembly-plugin</artifactId> |
| 42 | <executions> |
| 43 | <execution> |
| 44 | <id>create-distribution</id> |
| 45 | <phase>package</phase> |
| 46 | <goals> |
| 47 | <goal>single</goal> |
| 48 | </goals> |
| 49 | <configuration> |
| 50 | <descriptors> |
| 51 | <descriptor>src/assembly/assembly.xml</descriptor> |
| 52 | </descriptors> |
| 53 | </configuration> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
ramverma | 78c6f58 | 2018-10-23 16:58:34 +0100 | [diff] [blame] | 59 | </project> |