fix(resource-pack-entry-widgets): add java component
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/jfmod Pipeline was successful

This commit is contained in:
Johannes Frohnmeyer 2024-07-17 22:46:02 +02:00
parent 970bc681f3
commit 6c98f946c1
Signed by: Johannes
GPG Key ID: E76429612C2929F4

View File

@ -19,6 +19,14 @@ dependencies {
implementation(libs.neoforge)
}
publishing {
publications {
create<MavenPublication>("lom") {
from(components["java"])
}
}
}
tasks.publish { dependsOn(tasks.build) }
tasks.deployDebug.dependsOn(tasks.publish)
rootProject.tasks.deployDebug.dependsOn(tasks.deployDebug)