This repository was archived by the owner on Apr 18, 2026. It is now read-only.
Refactor build configuration and update Maven setup for Java 22+#16
Open
stan0x wants to merge 6 commits intojdolan:mainfrom
Open
Refactor build configuration and update Maven setup for Java 22+#16stan0x wants to merge 6 commits intojdolan:mainfrom
stan0x wants to merge 6 commits intojdolan:mainfrom
Conversation
Refactor build configuration and update README for platforms
Enhance Installer panel with hero image and Play button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements to the development and build process, primarily focusing on documenting prerequisites, enhancing Java/Maven compatibility, and refining the file synchronization logic. The most notable changes are grouped below.
Build and Development Prerequisites:
.github/copilot-instructions.mdto specify required Java (21+) and Maven (3.9+) versions, with detailed steps for installing Maven and handling PowerShell-specific output issues.Java/Maven Compatibility Enhancements:
.mvn/jvm.configto enable native access, allow sun.misc unsafe memory access, openjava.lang.reflectfor reflection, and permit final field mutation, improving compatibility with newer Java versions and Maven internals.File Synchronization Logic:
Manager.sync()inManager.javato useflatMapinstead ofconcatMap, allowing file synchronization tasks to run concurrently rather than sequentially, which can improve performance.