summaryrefslogtreecommitdiffstats
path: root/policy-regression-tests/policy-clamp-regression/pom.xml
diff options
context:
space:
mode:
authorrameshiyer27 <ramesh.murugan.iyer@est.tech>2024-02-14 10:13:16 +0000
committerrameshiyer27 <ramesh.murugan.iyer@est.tech>2024-02-28 10:44:36 +0000
commitb15eda6e03133862f071a6dc0127c3bc660aad1f (patch)
tree2465a306b7d3d5a052187e91034bf5382bbd120a /policy-regression-tests/policy-clamp-regression/pom.xml
parentfbfc234895c48282e2e92b44c8c8b49745e81745 (diff)
Add ACM regression test suite
Issue-ID: POLICY-4920 Signed-off-by: rameshiyer27 <ramesh.murugan.iyer@est.tech> Change-Id: Icf042b71a3faa2a83dc32dde57ddaf3d66e599d7
Diffstat (limited to 'policy-regression-tests/policy-clamp-regression/pom.xml')
-rw-r--r--policy-regression-tests/policy-clamp-regression/pom.xml72
1 files changed, 72 insertions, 0 deletions
diff --git a/policy-regression-tests/policy-clamp-regression/pom.xml b/policy-regression-tests/policy-clamp-regression/pom.xml
new file mode 100644
index 00000000..a9f31c97
--- /dev/null
+++ b/policy-regression-tests/policy-clamp-regression/pom.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.onap.policy.regression</groupId>
+ <artifactId>policy-regression-tests</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>policy-clamp-regression</artifactId>
+ <packaging>jar</packaging>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <version.cucumber>7.15.0</version.cucumber>
+ <version.rest-assured>5.4.0</version.rest-assured>
+ <version.junit-platform>1.10.2</version.junit-platform>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>io.cucumber</groupId>
+ <artifactId>cucumber-java</artifactId>
+ <version>${version.cucumber}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>io.cucumber</groupId>
+ <artifactId>cucumber-junit-platform-engine</artifactId>
+ <version>${version.cucumber}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter</artifactId>
+ <version>${version.jupiter}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-test</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>jakarta.xml.bind</groupId>
+ <artifactId>jakarta.xml.bind-api</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>io.rest-assured</groupId>
+ <artifactId>rest-assured</artifactId>
+ <version>${version.rest-assured}</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.junit.platform</groupId>
+ <artifactId>junit-platform-suite</artifactId>
+ <version>${version.junit-platform}</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+</project>