Update api and fix core-maven publication

This commit is contained in:
Lukas Rieger (Blue) 2024-09-29 12:48:28 +02:00
parent 9532788b73
commit 79c225433b
No known key found for this signature in database
GPG Key ID: AA33883B1BBA03E6
2 changed files with 8 additions and 2 deletions

2
api

@ -1 +1 @@
Subproject commit 1992148128799d4a9b7090e24655eb07c2cc7b06 Subproject commit 9f338dabb73ee8e195dba807db6c275b3c9e76a7

View File

@ -3,7 +3,7 @@ plugins {
} }
dependencies { dependencies {
api ( "de.bluecolored:api" ) api ( "de.bluecolored:bluemap-api" )
api ( libs.aircompressor ) api ( libs.aircompressor )
api ( libs.bluenbt ) api ( libs.bluenbt )
@ -57,6 +57,12 @@ publishing {
version = project.version.toString() version = project.version.toString()
from(components["java"]) from(components["java"])
versionMapping {
usage("java-api") {
fromResolutionResult()
}
}
} }
} }
} }