diff --git a/CHANGELOG.md b/CHANGELOG.md
index 718fdababc227882e15f3e60876492b969c5e292..258ffad91f30518cba6b18ed411cc1a661cb16e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added
 
-- Added `-Dhttp.keepAlive=false` option to `MAVEN_OPTS` in `auto-devops/maven.gitlab-ci.yml`
+- Added `-Dhttp.keepAlive=false` and `-Dmaven.wagon.http.pool=false` options
+  to `MAVEN_OPTS` in `auto-devops/maven.gitlab-ci.yml` file.
 
 ## [6.7.0] - 2025-02-25
 
diff --git a/auto-devops/maven.gitlab-ci.yml b/auto-devops/maven.gitlab-ci.yml
index a10ada3b6da82d675fa0e38872159bfe0de9687e..41cbcc3d19558a7e201dda8ef2a47cf7405ed529 100644
--- a/auto-devops/maven.gitlab-ci.yml
+++ b/auto-devops/maven.gitlab-ci.yml
@@ -96,6 +96,7 @@ services:
       -Djava.awt.headless=true
       -Xmx512m
       -Dhttp.keepAlive=false
+      -Dmaven.wagon.http.pool=false
 
     # As of Maven 3.3.0 instead of this you MAY define these options in `.mvn/maven.config` so the
     # same config is used when running from the command line.