Fix publish, hopefully

This commit is contained in:
shedaniel
2026-03-26 18:15:34 +09:00
parent 292852b2a9
commit 85415857bf

View File

@@ -357,7 +357,7 @@ publishing {
Node groupId = dependency.appendChild(document.createElement('groupId'))
groupId.setTextContent(project.group)
Node artifactId = dependency.appendChild(document.createElement('artifactId'))
artifactId.setTextContent(project.archivesBaseName)
artifactId.setTextContent(project.base.archivesName.get())
Node version = dependency.appendChild(document.createElement('version'))
version.setTextContent(project.version)
})