diff options
-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> |