mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-21 03:10:54 -04:00
1.14 Pre-Release 1, just build script changes
This commit is contained in:
parent
5f3245b0fd
commit
93f49a4824
2 changed files with 6 additions and 6 deletions
10
build.gradle
10
build.gradle
|
@ -26,11 +26,11 @@ targetCompatibility = 1.8
|
|||
|
||||
archivesBaseName = "fabric"
|
||||
|
||||
def baseVersion = "0.2.6"
|
||||
def mcVersion = "19w14b"
|
||||
def baseVersion = "0.2.7"
|
||||
def mcVersion = "1.14 Pre-Release 1"
|
||||
|
||||
def ENV = System.getenv()
|
||||
version = baseVersion + "." + (ENV.BUILD_NUMBER ?: "local")
|
||||
version = baseVersion + "+" + (ENV.BUILD_NUMBER ? ("build." + ENV.BUILD_NUMBER) : "local")
|
||||
|
||||
minecraft {
|
||||
refmapName = "net.fabricmc.fabric.refmap.json"
|
||||
|
@ -38,8 +38,8 @@ minecraft {
|
|||
|
||||
dependencies {
|
||||
minecraft "com.mojang:minecraft:$mcVersion"
|
||||
mappings "net.fabricmc:yarn:$mcVersion.1"
|
||||
modCompile "net.fabricmc:fabric-loader:0.3.7.109"
|
||||
mappings "net.fabricmc:yarn:$mcVersion+build.3"
|
||||
modCompile "net.fabricmc:fabric-loader:0.4.0+build.116"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
|
|
@ -29,7 +29,7 @@ public class KeyBindingModClient implements ClientModInitializer {
|
|||
KeyBindingRegistry.INSTANCE.register(
|
||||
FabricKeyBinding.Builder.create(
|
||||
new Identifier("fabric:test"),
|
||||
InputUtil.Type.KEY_KEYBOARD,
|
||||
InputUtil.Type.KEYSYM,
|
||||
37,
|
||||
"fabric.test"
|
||||
).build()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue