🔖 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

@@ -1,5 +1,6 @@
plugins {
id 'java-library'
id 'maven-publish'
}
archivesBaseName = project.archives_base_name + "-core"
@@ -15,3 +16,17 @@ java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(jar) {
builtBy jar
}
artifact(sourcesJar) {
builtBy sourcesJar
}
}
}
}