
- Removed deprecated `Remarkable` annotation/processor. - Added advancements for Nether and Skyblock progression. - Introduced `ClassBuilder` for dynamic class generation. - Implemented `SmeltingCraftingHandler` for custom recipes. - Updated dependencies for Paper API integration.
19 lines
No EOL
390 B
Groovy
19 lines
No EOL
390 B
Groovy
plugins {
|
|
id 'groovy-gradle-plugin'
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven {
|
|
name = "papermc-repo"
|
|
url = "https://repo.papermc.io/repository/maven-public/"
|
|
}
|
|
maven {
|
|
name = "sonatype"
|
|
url = "https://oss.sonatype.org/content/groups/public/"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.21.5-R0.1-SNAPSHOT")
|
|
} |