waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
liamfallon | 35840d8 | 2020-02-25 16:10:08 +0000 | [diff] [blame^] | 4 | Modifications Copyright (C) 2020 Nordix Foundation. |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +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 | |
liamfallon | 3aa7cbe | 2018-10-31 16:35:54 +0000 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
liamfallon | 35840d8 | 2020-02-25 16:10:08 +0000 | [diff] [blame^] | 26 | <artifactId>apex-integration</artifactId> |
jrh3 | d7d9df6 | 2019-09-12 10:07:06 -0400 | [diff] [blame] | 27 | <version>2.3.0-SNAPSHOT</version> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>integration-executor-test</artifactId> |
| 31 | <name>${project.artifactId}</name> |
| 32 | <description>[${project.parent.artifactId}] module to run executor tests using various executor script plugins</description> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.policy.apex-pdp.core</groupId> |
| 37 | <artifactId>core-infrastructure</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 42 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
| 43 | <artifactId>integration-common</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 48 | <artifactId>plugins-executor-mvel</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 54 | <artifactId>plugins-executor-jruby</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
liamfallon | 88f1759 | 2019-09-14 12:39:25 +0100 | [diff] [blame] | 58 | <!-- Jython support disabled due to security concerns --> |
| 59 | <!-- dependency> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 60 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 61 | <artifactId>plugins-executor-jython</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | <scope>test</scope> |
liamfallon | 88f1759 | 2019-09-14 12:39:25 +0100 | [diff] [blame] | 64 | </dependency--> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 65 | <dependency> |
| 66 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 67 | <artifactId>plugins-executor-javascript</artifactId> |
| 68 | <version>${project.version}</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 73 | <artifactId>plugins-executor-java</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
a.sreekumar | 40a1f22 | 2019-11-05 14:37:09 +0000 | [diff] [blame] | 77 | <dependency> |
| 78 | <groupId>org.assertj</groupId> |
| 79 | <artifactId>assertj-core</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 82 | </dependencies> |
Dinh Danh Le | a4a9922 | 2018-08-23 00:00:00 +0100 | [diff] [blame] | 83 | |
| 84 | <profiles> |
| 85 | <profile> |
| 86 | <id>apexSite</id> |
| 87 | <activation> |
| 88 | <property> |
| 89 | <name>apexSite</name> |
| 90 | </property> |
| 91 | </activation> |
| 92 | <distributionManagement> |
| 93 | <site> |
| 94 | <id>${project.artifactId}-site</id> |
| 95 | <url>${apex.adsite.prefix}/modules/testsuites/${project.parent.artifactId}/${project.artifactId}/</url> |
| 96 | </site> |
| 97 | </distributionManagement> |
| 98 | </profile> |
| 99 | </profiles> |
liamfallon | 35840d8 | 2020-02-25 16:10:08 +0000 | [diff] [blame^] | 100 | </project> |