Release 1.6.0 with TPA replication
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
plugins {
|
||||
id 'java-library'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
maven {
|
||||
name = 'papermc'
|
||||
url = uri('https://repo.papermc.io/repository/maven-public/')
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly 'io.papermc.paper:paper-api:1.21.11-R0.1-SNAPSHOT'
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
options.encoding = 'UTF-8'
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package cn.infstar.essentialsC.compat.jei;
|
||||
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.logging.Logger;
|
||||
|
||||
public interface JeiRecipeSyncAdapter {
|
||||
|
||||
void sendFabricRecipeSync(Player player, Logger logger, boolean debug) throws Exception;
|
||||
|
||||
void sendNeoForgeRecipeSync(Player player, Logger logger, boolean debug) throws Exception;
|
||||
}
|
||||
Reference in New Issue
Block a user