-
Notifications
You must be signed in to change notification settings - Fork 7
Folia 26.1.2 Support #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
DeL1TMe
wants to merge
12
commits into
funniray:main
Choose a base branch
from
DeL1TMe:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a8ed819
folia support for upstream branch
AltronMaxX 9eef70b
Merge pull request #1 from Edenor-Minecraft/main-upstream
AltronMaxX 7a44abd
Merge branch 'funniray:main' into main
AltronMaxX c623349
Update build.yml
AltronMaxX 29dfee3
Update gradle.yml
AltronMaxX 0fe06e1
Update deps
AltronMaxX 02ca70a
Update workflows
AltronMaxX b7f9cea
Revert "Update workflows"
AltronMaxX bdff058
Merge branch 'main' of https://github.com/funniray/minimap-control in…
AltronMaxX 44663b6
Merge branch 'funniray-main'
AltronMaxX 1816c31
feat: Enhance minimap plugin functionality and improve player message…
DeL1TMe 3cda9b4
feat: Improve player left handling and enhance version parsing in Spi…
DeL1TMe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,22 +4,30 @@ plugins { | |
|
|
||
| repositories { | ||
| mavenCentral() | ||
| maven { | ||
| url = uri("https://repo.papermc.io/repository/maven-public/") | ||
| } | ||
| } | ||
|
|
||
| val javaTarget = 8 // Sponge targets a minimum of Java 17 | ||
| val javaTarget = 25 | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should stay on Java 8, or 17 at most |
||
| java { | ||
| sourceCompatibility = JavaVersion.toVersion(javaTarget) | ||
| targetCompatibility = JavaVersion.toVersion(javaTarget) | ||
| if (JavaVersion.current() < JavaVersion.toVersion(javaTarget)) { | ||
| toolchain.languageVersion.set(JavaLanguageVersion.of(javaTarget)) | ||
| toolchain { | ||
| languageVersion.set(JavaLanguageVersion.of(javaTarget)) | ||
| vendor.set(JvmVendorSpec.matching("")) | ||
| } | ||
| } | ||
|
|
||
| tasks { | ||
| withType<JavaCompile>().configureEach { | ||
| options.release.set(javaTarget) | ||
| } | ||
| } | ||
|
|
||
| dependencies { | ||
| compileOnly("com.google.guava:guava:21.0") | ||
| compileOnly("com.google.code.gson:gson:2.8.0") | ||
| compileOnly("org.spongepowered:configurate-core:4.1.2") | ||
| compileOnly("net.kyori:adventure-api:4.10.0") | ||
| compileOnly("net.kyori:adventure-text-minimessage:4.10.0") | ||
| compileOnly("net.kyori:adventure-nbt:4.15.0") | ||
| compileOnly("com.google.guava:guava:33.4.8-jre") | ||
| compileOnly("com.google.code.gson:gson:2.13.1") | ||
| implementation("org.spongepowered:configurate-core:4.2.0") | ||
| implementation("net.kyori:adventure-api:4.22.0") | ||
| implementation("net.kyori:adventure-text-minimessage:4.22.0") | ||
| implementation("net.kyori:adventure-nbt:4.22.0") | ||
| } | ||
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
common should not depend on paper at all.