aboutsummaryrefslogtreecommitdiffstats
path: root/policy-regression-tests/policy-clamp-regression/pom.xml
diff options
context:
space:
mode:
authorrameshiyer27 <ramesh.murugan.iyer@est.tech>2024-03-20 12:38:11 +0000
committerrameshiyer27 <ramesh.murugan.iyer@est.tech>2024-03-20 12:38:11 +0000
commit6f8a8fdf2815ab5354b15c3fa6c076c09cf62b27 (patch)
treeb7294cb133c85c9274f77e19c6b579ed315a55ac /policy-regression-tests/policy-clamp-regression/pom.xml
parent3e1c1491c4aa260fda04d13cd7ad97056e43c02a (diff)
Fix jenkins merge job failure in policy-docker
ACM regression tests are getting invoked in the maven build without policy deployment available. The tests are skipped by default and enabled only from the regression script. Issue-ID: POLICY-4946 Change-Id: I476eed2aa015f349fdabb474281f49d62bfea058 Signed-off-by: rameshiyer27 <ramesh.murugan.iyer@est.tech>
Diffstat (limited to 'policy-regression-tests/policy-clamp-regression/pom.xml')
-rw-r--r--policy-regression-tests/policy-clamp-regression/pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/policy-regression-tests/policy-clamp-regression/pom.xml b/policy-regression-tests/policy-clamp-regression/pom.xml
index da13e157..850c748f 100644
--- a/policy-regression-tests/policy-clamp-regression/pom.xml
+++ b/policy-regression-tests/policy-clamp-regression/pom.xml
@@ -18,6 +18,7 @@
<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>
+ <tests.skip>true</tests.skip>
</properties>
<dependencies>
@@ -74,4 +75,24 @@
</dependencies>
+ <build>
+ <finalName>${project.artifactId}-${project.version}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skipTests>${tests.skip}</skipTests>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>