From 39bbcaef8239e58d7cadad7134e3fd32b56af008 Mon Sep 17 00:00:00 2001 From: Dmitrii Unterov <du228@cam.ac.uk> Date: Wed, 26 Feb 2025 11:02:11 +0000 Subject: [PATCH] fix: add -Dhttp.keepAlive=false to MAVEN_OPTS --- CHANGELOG.md | 6 ++++++ auto-devops/maven.gitlab-ci.yml | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7793248..718fdab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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` option to `MAVEN_OPTS` in `auto-devops/maven.gitlab-ci.yml` + ## [6.7.0] - 2025-02-25 ### Changed diff --git a/auto-devops/maven.gitlab-ci.yml b/auto-devops/maven.gitlab-ci.yml index a9a5590..a10ada3 100644 --- a/auto-devops/maven.gitlab-ci.yml +++ b/auto-devops/maven.gitlab-ci.yml @@ -95,6 +95,7 @@ services: -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true -Xmx512m + -Dhttp.keepAlive=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. -- GitLab