chore(quarkus-327): bump to Quarkus 3.27.3 LTS, make pom autonomous, fix 3 tests (NPE guard, equalsHashCode with shared refs), rename deprecated config keys

This commit is contained in:
2026-04-23 14:45:54 +00:00
parent 8cec38f7b3
commit fb3a32817b
312 changed files with 50688 additions and 50645 deletions

View File

@@ -1,9 +1,9 @@
# Arrête les processus Java démarrés par quarkus:dev (libère target)
$procs = Get-CimInstance Win32_Process -Filter "name = 'java.exe'" |
Where-Object { $_.CommandLine -and ($_.CommandLine -like '*unionflow*' -or $_.CommandLine -like '*quarkus*') }
foreach ($p in $procs) {
Write-Host "Arret PID $($p.ProcessId): $($p.CommandLine.Substring(0, [Math]::Min(80, $p.CommandLine.Length)))..."
Stop-Process -Id $p.ProcessId -Force -ErrorAction SilentlyContinue
}
if (-not $procs) { Write-Host "Aucun processus Java unionflow/quarkus en cours." }
Write-Host "Termine."
# Arrête les processus Java démarrés par quarkus:dev (libère target)
$procs = Get-CimInstance Win32_Process -Filter "name = 'java.exe'" |
Where-Object { $_.CommandLine -and ($_.CommandLine -like '*unionflow*' -or $_.CommandLine -like '*quarkus*') }
foreach ($p in $procs) {
Write-Host "Arret PID $($p.ProcessId): $($p.CommandLine.Substring(0, [Math]::Min(80, $p.CommandLine.Length)))..."
Stop-Process -Id $p.ProcessId -Force -ErrorAction SilentlyContinue
}
if (-not $procs) { Write-Host "Aucun processus Java unionflow/quarkus en cours." }
Write-Host "Termine."