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 | f0fd964 | 2022-02-11 00:43:14 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2020,2022 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> |
liamfallon | a54acdf | 2022-12-15 16:19:41 +0000 | [diff] [blame] | 27 | <version>2.9.1-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> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 36 | <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId> |
| 37 | <artifactId>integration-common</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 42 | <artifactId>plugins-executor-mvel</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 48 | <artifactId>plugins-executor-jruby</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
liamfallon | 88f1759 | 2019-09-14 12:39:25 +0100 | [diff] [blame] | 52 | <!-- Jython support disabled due to security concerns --> |
| 53 | <!-- dependency> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 54 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 55 | <artifactId>plugins-executor-jython</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | <scope>test</scope> |
liamfallon | 88f1759 | 2019-09-14 12:39:25 +0100 | [diff] [blame] | 58 | </dependency--> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 61 | <artifactId>plugins-executor-javascript</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId> |
| 67 | <artifactId>plugins-executor-java</artifactId> |
| 68 | <version>${project.version}</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
a.sreekumar | 40a1f22 | 2019-11-05 14:37:09 +0000 | [diff] [blame] | 71 | <dependency> |
| 72 | <groupId>org.assertj</groupId> |
| 73 | <artifactId>assertj-core</artifactId> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
waqas.ikram | 6bf1aa0 | 2018-07-10 11:52:12 +0100 | [diff] [blame] | 76 | </dependencies> |
liamfallon | 35840d8 | 2020-02-25 16:10:08 +0000 | [diff] [blame] | 77 | </project> |