From 82048663c2e5a422292a65259a20947f7b471ba6 Mon Sep 17 00:00:00 2001 From: CoolGuy27 <4052244-CoolGuy27@users.noreply.replit.com> Date: Mon, 20 Apr 2026 19:01:11 +0000 Subject: [PATCH] Update project dependencies to use the latest Java version Ensure the project uses Java 21 by updating the replit.nix configuration file. Replit-Commit-Author: Agent Replit-Commit-Session-Id: f6819c21-e85d-45ac-acde-604db2cfa4fe Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 84d583df-25bd-4291-b056-e06402231ebd Replit-Helium-Checkpoint-Created: true --- .replit | 1 + replit.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 replit.nix diff --git a/.replit b/.replit index 5c54b72..0ef6faf 100644 --- a/.replit +++ b/.replit @@ -1,5 +1,6 @@ [nix] packages = ["adoptopenjdk-openj9-bin-16"] +channel = "stable-25_05" [agent] expertMode = true diff --git a/replit.nix b/replit.nix new file mode 100644 index 0000000..2216b7e --- /dev/null +++ b/replit.nix @@ -0,0 +1,5 @@ +{pkgs}: { + deps = [ + pkgs.jdk21 + ]; +}