diff --git a/CHANGELOG.md b/CHANGELOG.md index 7793248ae1dc473c9d81b46c60d70f4dc30821b6..258ffad91f30518cba6b18ed411cc1a661cb16e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [6.7.1] - 2025-02-26 + +### Added + +- 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 ### Changed diff --git a/auto-devops/maven.gitlab-ci.yml b/auto-devops/maven.gitlab-ci.yml index a9a5590e7ed7ad269f98cb4eb0950696ad7c7bbb..41cbcc3d19558a7e201dda8ef2a47cf7405ed529 100644 --- a/auto-devops/maven.gitlab-ci.yml +++ b/auto-devops/maven.gitlab-ci.yml @@ -95,6 +95,8 @@ services: -Dorg.slf4j.simpleLogger.showDateTime=true -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.