🔖 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

@@ -27,6 +27,20 @@ allprojects {
classifier = "sources"
from sourceSets.main.allSource
}
publishing {
repositories {
mavenLocal()
maven {
name = "GithubPackages"
url = uri("https://maven.pkg.github.com/LambdAurora/LambdaControls")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
}
}
/*