This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from Shynixn/development
Merge changes to Master --release
- Loading branch information
Showing
15 changed files
with
985 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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
24 changes: 24 additions & 0 deletions
24
structureblocklib-bukkit-core/bukkit-nms-119R2/build.gradle.kts
This file contains 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
repositories { | ||
maven(url = "https://libraries.minecraft.net") | ||
} | ||
|
||
dependencies { | ||
// Dependencies of spigot mojang want to restrict usage to only Java 17. However, we do not care | ||
// what they want because the general compatibility of this plugin is Java 8. The plugin | ||
// guarantees that everything works during runtime. This error is a false positive. | ||
components { | ||
all { | ||
allVariants { | ||
attributes { | ||
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 8) | ||
} | ||
} | ||
} | ||
} | ||
|
||
implementation(project(":structureblocklib-api")) | ||
implementation(project(":structureblocklib-core")) | ||
implementation(project(":structureblocklib-bukkit-api")) | ||
compileOnly("org.spigotmc:spigot:1.19.3-R0.1-SNAPSHOT:remapped-mojang") | ||
testCompile("org.spigotmc:spigot:1.19.3-R0.1-SNAPSHOT:remapped-mojang") | ||
} |
Oops, something went wrong.