Merge pull request #23 from AzureDoom/azuredoom-plugin
Some checks failed
Verifying Everything Compiles / build (push) Has been cancelled

Fixes for VSCode and Jar Name not updating when building
This commit is contained in:
Neil
2026-06-19 23:03:15 +05:30
committed by GitHub
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored
View File

@@ -9,3 +9,4 @@ run/
.classpath .classpath
.project .project
.settings/ .settings/
.vscode

View File

@@ -41,6 +41,11 @@ repositories {
mavenCentral() mavenCentral()
} }
tasks.named<Jar>("jar") {
archiveBaseName.set(project.property("mod_name").toString())
archiveVersion.set(project.property("version").toString())
}
// Uncomment if you are using IntelliJ. // Uncomment if you are using IntelliJ.
// idea { // idea {
// module { // module {