🔖 LambdaControls v1.3.1: Fix broken inventory interactions and virtual mouse bug.

This commit is contained in:
LambdAurora
2020-06-28 22:22:19 +02:00
parent 4669e446dc
commit 24f7054eff
12 changed files with 222 additions and 79 deletions

View File

@@ -4,6 +4,7 @@ plugins {
id 'maven-publish'
}
version = "${project.mod_version}+${project.minecraft_version}"
archivesBaseName = project.archives_base_name + "-fabric"
minecraft {
@@ -91,4 +92,20 @@ jar {
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
}
build.dependsOn(":core:build")
publish.dependsOn(":core:publish")