diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-11 16:40:59 +0000 |
---|---|---|
committer | Sourabh Sourabh <sourabh.sourabh@est.tech> | 2024-11-11 16:46:00 +0000 |
commit | ea5b0a88b64ed86c7a1e443bfe8e8b0477f673e6 (patch) | |
tree | 457dc2448a8bad1364ff641457ba1ef95609530d /integration-test | |
parent | 38cea5882ab71f23eddd3ffc9fd56c5d6540f28e (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 'integration-test')
-rw-r--r-- | integration-test/pom.xml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/integration-test/pom.xml b/integration-test/pom.xml index b39c1987bf..7ac9460f5e 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -113,29 +113,4 @@ <scope>test</scope> </dependency> </dependencies> - - <profiles> - <!-- Performance tests are run with maven-failsafe-plugin using a separate profile, so they will - not affect Jacoco coverage. Heap size is set here to ensure consistent test environment. --> - <profile> - <id>include-performance</id> - <properties> - <failsafeArgLine>-Xms512m -Xmx512m</failsafeArgLine> - </properties> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-failsafe-plugin</artifactId> - <configuration> - <includes> - <include>**/*PerfTest.java</include> - </includes> - </configuration> - </plugin> - </plugins> - </build> - </profile> - </profiles> - </project> |