diff options
author | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2024-02-06 11:10:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-02-06 11:10:25 +0000 |
commit | 91a8ece36962ac1f6f31615bbd05e615e0e9c773 (patch) | |
tree | e522b847d91161a0aa6bb642ee8754fa8994afd3 | |
parent | 974437413c9053cbb28c2bdeaf7ec48e92818f02 (diff) | |
parent | 7a35d9243774715c93b7d7dc53ff80333b3855f6 (diff) |
Merge "Limit heap size in Groovy integration tests"
-rw-r--r-- | integration-test/pom.xml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/integration-test/pom.xml b/integration-test/pom.xml index f03b1c63e3..3ac0964180 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- ============LICENSE_START======================================================= - Copyright (c) 2023 Nordix Foundation + Copyright (c) 2023-2024 Nordix Foundation ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -90,6 +90,25 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <configuration> + <argLine>-Xms512m -Xmx512m</argLine> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-Xms512m -Xmx512m</argLine> + </configuration> + </plugin> + </plugins> + </build> + <profiles> <profile> <id>default</id> |