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
This commit is contained in:
CoolGuy27
2026-04-20 19:01:11 +00:00
parent 3658610a9f
commit 82048663c2
2 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
[nix]
packages = ["adoptopenjdk-openj9-bin-16"]
channel = "stable-25_05"
[agent]
expertMode = true

5
replit.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs}: {
deps = [
pkgs.jdk21
];
}