aboutsummaryrefslogtreecommitdiffstats
path: root/cps-path-parser
diff options
context:
space:
mode:
authorsourabh_sourabh <sourabh.sourabh@est.tech>2024-11-11 16:40:59 +0000
committerSourabh Sourabh <sourabh.sourabh@est.tech>2024-11-11 16:46:00 +0000
commitea5b0a88b64ed86c7a1e443bfe8e8b0477f673e6 (patch)
tree457dc2448a8bad1364ff641457ba1ef95609530d /cps-path-parser
parent38cea5882ab71f23eddd3ffc9fd56c5d6540f28e (diff)
Configure Maven Profile for Performance Tests
- Enhance: Define global property for maven-resources-plugin and maven-failsafe-plugin version. - Updated Maven configuration to include performance test cases - Enable performance test inclusion in build with include-performance profile - Configured build to run all performance tests with include-performance profile Issue-ID: CPS-2491 Change-Id: Iecedfc0fce9ce8ed2bfab00784d22eb53cacd18a Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'cps-path-parser')
-rw-r--r--cps-path-parser/pom.xml26
1 files changed, 0 insertions, 26 deletions
diff --git a/cps-path-parser/pom.xml b/cps-path-parser/pom.xml
index 57b1e6b247..b876c48810 100644
--- a/cps-path-parser/pom.xml
+++ b/cps-path-parser/pom.xml
@@ -82,30 +82,4 @@
<scope>test</scope>
</dependency>
</dependencies>
-
- <profiles>
- <profile>
- <id>default</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <excludes>
- <exclude>%regex[.*PerfTest.*]</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>include-performance</id>
- </profile>
- </profiles>
-
</project>